diff options
Diffstat (limited to 'layout/reftests/scoped-style/scoped-style-important-002.html')
-rw-r--r-- | layout/reftests/scoped-style/scoped-style-important-002.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/layout/reftests/scoped-style/scoped-style-important-002.html b/layout/reftests/scoped-style/scoped-style-important-002.html new file mode 100644 index 000000000..3e2d1526e --- /dev/null +++ b/layout/reftests/scoped-style/scoped-style-important-002.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<body> + <p>First</p> + <p style="color: red"> + <style scoped> + p { color: blue !important } + </style> + Second + </p> + <p>Third</p> +</body> |