summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/selector/attribute-value-selector-009-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/CSS2/selector/attribute-value-selector-009-ref.html')
-rw-r--r--testing/web-platform/tests/css/CSS2/selector/attribute-value-selector-009-ref.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/CSS2/selector/attribute-value-selector-009-ref.html b/testing/web-platform/tests/css/CSS2/selector/attribute-value-selector-009-ref.html
new file mode 100644
index 0000000000..78f497708d
--- /dev/null
+++ b/testing/web-platform/tests/css/CSS2/selector/attribute-value-selector-009-ref.html
@@ -0,0 +1,24 @@
+<!DOCTYPE html>
+<meta charset="utf-8">
+<title>CSS Reference</title>
+<style>
+ .green {
+ background-color: green;
+ color: white;
+ }
+</style>
+<body>
+ <div class="green">This line should be green</div>
+ <div class="green">This line should be green</div>
+ <div class="green">This line should be green</div>
+ <div class="green">This line should be green</div>
+ <p class="green">This line should be green <em>and this should be green too</em></p>
+
+ <div>This line should NOT be green</div>
+ <div>This line should NOT be green</div>
+ <div>This line should NOT be green</div>
+ <div>This line should NOT be green</div>
+ <div>This line should NOT be green</div>
+ <div>This line should NOT be green<p>This line should NOT be green</p></div>
+ <p>This line should NOT be green <em>and this should not be green either</em></p>
+</body>