2007-05-08 05:54:12 -07:00
|
|
|
<!--
|
|
|
|
Any copyright is dedicated to the Public Domain.
|
|
|
|
http://creativecommons.org/licenses/publicdomain/
|
|
|
|
-->
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg"
|
|
|
|
xmlns:html="http://www.w3.org/1999/xhtml"
|
|
|
|
class="reftest-wait"
|
2009-02-05 00:16:00 -08:00
|
|
|
onload="startTest()">
|
2007-05-08 05:54:12 -07:00
|
|
|
|
|
|
|
<title>Testcase for changing the 'transform' on foreignObject</title>
|
|
|
|
|
|
|
|
<!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=369911 -->
|
|
|
|
|
|
|
|
<script type="application/javascript">
|
|
|
|
|
2009-02-05 00:16:00 -08:00
|
|
|
// The foreignObject is inverted so that it is outside the viewport.
|
|
|
|
// After the rect has rendered the transform on the
|
2007-05-08 05:54:12 -07:00
|
|
|
// foreignObject is removed and the green div should fill the viewport.
|
|
|
|
|
2009-02-05 00:16:00 -08:00
|
|
|
function startTest() {
|
|
|
|
document.addEventListener("MozReftestInvalidate", doTest, false);
|
|
|
|
// in case we're not gecko
|
|
|
|
setTimeout(doTest, 5000);
|
|
|
|
}
|
2007-05-08 05:54:12 -07:00
|
|
|
|
2009-02-05 00:16:00 -08:00
|
|
|
function doTest() {
|
|
|
|
document.getElementById('fo').setAttribute('transform', '');
|
2007-05-08 05:54:12 -07:00
|
|
|
|
2009-02-05 00:16:00 -08:00
|
|
|
document.documentElement.removeAttribute('class');
|
|
|
|
}
|
2007-05-08 05:54:12 -07:00
|
|
|
</script>
|
|
|
|
<rect width="100%" height="100%" fill="red"/>
|
|
|
|
<foreignObject id="fo" width="100%" height="100%" transform="scale(-1)">
|
|
|
|
<html:div style="display:block;width:100%;height:100%;background:lime;"/>
|
|
|
|
</foreignObject>
|
|
|
|
</svg>
|