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