summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/conformance-checkers/xhtml/elements/ol/031-isvalid.xhtml
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/conformance-checkers/xhtml/elements/ol/031-isvalid.xhtml')
-rw-r--r--testing/web-platform/tests/conformance-checkers/xhtml/elements/ol/031-isvalid.xhtml36
1 files changed, 36 insertions, 0 deletions
diff --git a/testing/web-platform/tests/conformance-checkers/xhtml/elements/ol/031-isvalid.xhtml b/testing/web-platform/tests/conformance-checkers/xhtml/elements/ol/031-isvalid.xhtml
new file mode 100644
index 0000000000..341b94d576
--- /dev/null
+++ b/testing/web-platform/tests/conformance-checkers/xhtml/elements/ol/031-isvalid.xhtml
@@ -0,0 +1,36 @@
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>Ordered List: &lt;ol&gt; &lt;li&gt;</title>
+</head>
+<body>
+ <!-- is block -->
+ <ol class="class" id="id" xml:lang="en" start="05">
+ <li class="class" id="id2" xml:lang="en" value="9">text</li>
+ </ol>
+
+ <!-- can be empty -->
+ <ol></ol>
+ <ol>
+ <li></li>
+ <li></li>
+ </ol>
+
+ <!-- can contain structured inline -->
+ <ol>
+ <li>some <em>text</em>
+ <pre>more text</pre>
+ </li>
+ </ol>
+
+ <!-- can contain blocks -->
+ <ol>
+ <li>
+ <p>some</p>
+ <p>text</p>
+ </li>
+ </ol>
+
+ <!-- can contain interactive -->
+ <ol><li><a>text</a></li></ol>
+</body>
+</html>