summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/conditions-07.svg
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/svg/conditions-07.svg')
-rw-r--r--layout/reftests/svg/conditions-07.svg40
1 files changed, 40 insertions, 0 deletions
diff --git a/layout/reftests/svg/conditions-07.svg b/layout/reftests/svg/conditions-07.svg
new file mode 100644
index 0000000000..15b5ff0dbd
--- /dev/null
+++ b/layout/reftests/svg/conditions-07.svg
@@ -0,0 +1,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>