diff --git a/source b/source index 864a982e0de..0c25081329f 100644 --- a/source +++ b/source @@ -136026,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.