blob: fc95ef5acf287700520cfee63dcbc7e38871e8c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" class="reftest-wait"
height="0" width="0" viewBox="0 0 50 50" preserveAspectRatio="none">
<script>
document.addEventListener("MozReftestInvalidate", doTest, false);
setTimeout(doTest, 4000); // fallback for running outside reftest
function doTest() {
document.documentElement.removeAttribute("width");
document.documentElement.removeAttribute("height");
document.documentElement.removeAttribute("class");
}
</script>
<rect width="100%" height="100%" fill="red"/>
<foreignObject width="100%" height="100%">
<div xmlns="http://www.w3.org/1999/xhtml"
style="background:lime; width:100%; height:100%;"/>
</foreignObject>
</svg>
|