diff options
Diffstat (limited to 'testing/web-platform/tests/css/CSS2/sec5/first-child-000-ref.html')
-rw-r--r-- | testing/web-platform/tests/css/CSS2/sec5/first-child-000-ref.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/CSS2/sec5/first-child-000-ref.html b/testing/web-platform/tests/css/CSS2/sec5/first-child-000-ref.html new file mode 100644 index 0000000000..6c65404bfc --- /dev/null +++ b/testing/web-platform/tests/css/CSS2/sec5/first-child-000-ref.html @@ -0,0 +1,23 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>CSS Reference</title> +<style> + p { + color: fuchsia; + } + div { + color: orange; + } + h4 { + color: blue; + } + .silver { + color: silver; + } +</style> +<body> + <p><em>This text should be fuchsia.</em> <span class="silver">Filler text.</span></p> + <div>This text should be orange.</div> + <p class="silver">Filler text.</p> + <h4>This text should be blue. <span class="silver">Filler text.</span></h4> +</body> |