blob: 15b5ff0dbdc947fa7296250a4858e42a3453f677 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<svg id="svg-root" width="100%" height="100%"
xmlns="http://www.w3.org/2000/svg"
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>
|