summaryrefslogtreecommitdiffstats
path: root/layout/reftests/scoped-style/scoped-style-important-001.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/scoped-style/scoped-style-important-001.html')
-rw-r--r--layout/reftests/scoped-style/scoped-style-important-001.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/layout/reftests/scoped-style/scoped-style-important-001.html b/layout/reftests/scoped-style/scoped-style-important-001.html
new file mode 100644
index 000000000..1fd9f202e
--- /dev/null
+++ b/layout/reftests/scoped-style/scoped-style-important-001.html
@@ -0,0 +1,14 @@
+<!DOCTYPE html>
+<body>
+ <p>First</p>
+ <p>
+ <style scoped>
+ p { color: red }
+ </style>
+ Second
+ </p>
+ <p>Third</p>
+ <style>
+ p { color: blue !important }
+ </style>
+</body>