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