diff options
Diffstat (limited to 'layout/reftests/scoped-style/scoped-style-017.html')
-rw-r--r-- | layout/reftests/scoped-style/scoped-style-017.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/layout/reftests/scoped-style/scoped-style-017.html b/layout/reftests/scoped-style/scoped-style-017.html new file mode 100644 index 000000000..eb35174db --- /dev/null +++ b/layout/reftests/scoped-style/scoped-style-017.html @@ -0,0 +1,16 @@ +<!DOCTYPE html> +<body> + <p>First</p> + <div> + <style scoped> + div { text-decoration: underline } + </style> + <p> + <style scoped> + div { color: red } + </style> + Second + </p> + <p>Third</p> + </div> +</body> |