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