summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-lists/counter-list-item-2-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-lists/counter-list-item-2-ref.html')
-rw-r--r--testing/web-platform/tests/css/css-lists/counter-list-item-2-ref.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-lists/counter-list-item-2-ref.html b/testing/web-platform/tests/css/css-lists/counter-list-item-2-ref.html
new file mode 100644
index 0000000000..9405c845ce
--- /dev/null
+++ b/testing/web-platform/tests/css/css-lists/counter-list-item-2-ref.html
@@ -0,0 +1,24 @@
+<!DOCTYPE html>
+<!--
+ Any copyright is dedicated to the Public Domain.
+ http://creativecommons.org/publicdomain/zero/1.0/
+-->
+<html><head>
+ <title>HTML LI element: explicit scope</title>
+ <link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.org">
+ <style>
+ #a::before { content: "1"; }
+ #b::before { content: "2"; }
+ #c::before { content: "2.1"; }
+ #d::before { content: "2.2"; }
+ </style>
+</head>
+<body>
+<ol>
+<li value="1" id="a"></li>
+<li value="2" id="b"></li>
+<ol><li value="1" id="c"></li></ol>
+<li value="2" id="d"></li>
+</ol>
+</body>
+</html>