diff options
Diffstat (limited to 'layout/reftests/scoped-style/scoped-style-dynamic-006.html')
-rw-r--r-- | layout/reftests/scoped-style/scoped-style-dynamic-006.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/layout/reftests/scoped-style/scoped-style-dynamic-006.html b/layout/reftests/scoped-style/scoped-style-dynamic-006.html new file mode 100644 index 000000000..8947b08aa --- /dev/null +++ b/layout/reftests/scoped-style/scoped-style-dynamic-006.html @@ -0,0 +1,17 @@ +<!DOCTYPE html> +<body onload="f()"> + <p>First</p> + <p> + <style> + p { color: green } + </style> + Second + </p> + <p>Third</p> + <script> + function f() { + var style = document.getElementsByTagName("style")[0]; + style.setAttribute("scoped", ""); + } + </script> +</body> |