diff options
Diffstat (limited to 'testing/web-platform/tests/css/CSS2/tables/caption-side-applies-to-003-ref.html')
-rw-r--r-- | testing/web-platform/tests/css/CSS2/tables/caption-side-applies-to-003-ref.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/CSS2/tables/caption-side-applies-to-003-ref.html b/testing/web-platform/tests/css/CSS2/tables/caption-side-applies-to-003-ref.html new file mode 100644 index 0000000000..87bda4a957 --- /dev/null +++ b/testing/web-platform/tests/css/CSS2/tables/caption-side-applies-to-003-ref.html @@ -0,0 +1,18 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>CSS Reference</title> +<style> + div { + margin-left: 2em; + } + .orange { + background: orange; + display: list-item; + } +</style> +<body> + <p>Test passes if there are three lines of "Filler Text" below and if the middle "Filler Text" has a orange background and a marker bullet on its left-hand side. The marker bullet should not have an orange background.</p> + <div>Filler Text</div> + <div class="orange">Filler Text</div> + <div>Filler Text</div> +</body> |