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