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