summaryrefslogtreecommitdiffstats
path: root/layout/reftests/scoped-style/scoped-style-012.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/scoped-style/scoped-style-012.html')
-rw-r--r--layout/reftests/scoped-style/scoped-style-012.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/layout/reftests/scoped-style/scoped-style-012.html b/layout/reftests/scoped-style/scoped-style-012.html
new file mode 100644
index 000000000..5803e9dc4
--- /dev/null
+++ b/layout/reftests/scoped-style/scoped-style-012.html
@@ -0,0 +1,16 @@
+<!DOCTYPE html>
+<body>
+ <div>First</div>
+ <div>
+ <style scoped>
+ div { color: green }
+ </style>
+ Second
+ <div>
+ <style scoped>
+ div { text-decoration: underline }
+ </style>
+ Third
+ </div>
+ </div>
+</body>