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