Bug 780963 crashtest. r=roc.

This commit is contained in:
Jonathan Watt 2012-08-16 11:54:48 +01:00
parent 862dd24e8c
commit abbc9d424f
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,27 @@
<!DOCTYPE html>
<html>
<head>
<script>
function tweak() {
document.body.offsetTop;
var feImage = document.getElementsByTagName("feImage")[0];
feImage.setAttribute('filter', 'url(#f1)')
document.body.offsetTop;
var child = document.createElementNS('http://www.w3.org/2000/svg', 'g')
feImage.appendChild(child);
}
</script>
</head>
<body onload="tweak()">
<svg xmlns="http://www.w3.org/2000/svg">
<filter filterUnits="userSpaceOnUse" id="f1">
<feImage/>
</filter>
<rect height="100" width="100"/>
</svg>
</body>
</html>

View File

@ -131,5 +131,6 @@ load 740627-2.svg
load 757704-1.svg
load 757718-1.svg
load 768351.svg
load 780963-1.html
load 757751-1.svg