summaryrefslogtreecommitdiffstats
path: root/layout/reftests/scoped-style/scoped-style-dynamic-003.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/scoped-style/scoped-style-dynamic-003.html')
-rw-r--r--layout/reftests/scoped-style/scoped-style-dynamic-003.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/layout/reftests/scoped-style/scoped-style-dynamic-003.html b/layout/reftests/scoped-style/scoped-style-dynamic-003.html
new file mode 100644
index 000000000..048688cdf
--- /dev/null
+++ b/layout/reftests/scoped-style/scoped-style-dynamic-003.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<body onload="f()">
+ <p>First</p>
+ <p>
+ <style scoped>
+ p { color: green }
+ </style>
+ <style scoped>
+ p { text-decoration: underline }
+ </style>
+ Second
+ </p>
+ <p>Third</p>
+ <script>
+ function f() {
+ var style = document.getElementsByTagName("style")[1];
+ style.parentNode.removeChild(style);
+ }
+ </script>
+</body>