Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

SVG Preview (Scaled)

Preview of https://hg.mozilla.org/mozilla-central/raw-file/tip/layout/reftests/svg/conditions-07.svg
<!--
Any copyright is dedicated to the Public Domain.
-->
<svg id="svg-root" width="100%" height="100%"
xmlns:xlink="http://www.w3.org/1999/xlink" onload="runtest()">
<title>Test conditional processing DOM interface for foreignObject</title>
<defs>
<script>
function runtest() {
try {
var f1 = document.getElementById("f1");
var i0 = f1.systemLanguage.getItem(0);
if(i0 != "x") {
return;
}
f1.removeAttribute("systemLanguage");
} catch(e) {
var f = document.getElementById("fail");
f.setAttribute("fill", "red");
}
}
</script>
</defs>
<rect width="100%" height="100%" fill="lime"/>
<!-- background images -->
<rect x="100" y="100" width="100" height="100" fill="red"/>
<!-- tests -->
<foreignObject id="f1" x="100" y="100" width="100" height="100" systemLanguage="x">
<svg>
<rect width="100%" height="100%" fill="lime"/>
</svg>
</foreignObject>
<rect id="fail" width="100%" height="100%" fill="none"/>
</svg>