diff options
Diffstat (limited to 'layout/reftests/scoped-style/scoped-style-dynamic-013.svg')
-rw-r--r-- | layout/reftests/scoped-style/scoped-style-dynamic-013.svg | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/layout/reftests/scoped-style/scoped-style-dynamic-013.svg b/layout/reftests/scoped-style/scoped-style-dynamic-013.svg new file mode 100644 index 000000000..fc5f00111 --- /dev/null +++ b/layout/reftests/scoped-style/scoped-style-dynamic-013.svg @@ -0,0 +1,15 @@ +<svg xmlns="http://www.w3.org/2000/svg" onload="f()"> + <rect width="50" height="50"/> + <g> + <style> + rect { fill: blue } + </style> + <rect x="60" width="50" height="50"/> + </g> + <rect x="120" width="50" height="50"/> + <script> + function f() { + document.getElementsByTagName("style")[0].setAttribute("scoped", ""); + } + </script> +</svg> |