diff --git a/source b/source index 499ca004a39..0c25081329f 100644 --- a/source +++ b/source @@ -136009,11 +136009,7 @@ dir, menu, ul { } :is(dir, menu, ol, ul) :is(dir, menu, ol, ul) :is(dir, menu, ul) { list-style-type: square; -} - -li { list-style-position: inside; } -li :is(dir, menu, ol, ul) { list-style-position: outside; } -:is(dir, menu, ol, ul) :is(dir, menu, ol, ul, li) { list-style-position: unset; } +}
The following rules are also expected to apply, as presentational hints:
@@ -136030,6 +136026,14 @@ ul[type=disc i], li[type=disc i] { list-style-type: disc; } ul[type=circle i], li[type=circle i] { list-style-type: circle; } ul[type=square i], li[type=square i] { list-style-type: square; } +In quirks mode, the following rules are also expected to apply:
+ +@namespace "http://www.w3.org/1999/xhtml";
+
+li { list-style-position: inside; }
+li :is(ul, ol) { list-style-position: outside; }
+:is(ul, ol) :is(ul, ol, li) { list-style-position: unset; }
+
When rendering li
elements, non-CSS user agents are expected to use the
ordinal value of the li
element to render the counter in the list item
marker.