diff --git a/source b/source index 864a982e0de..0a3bd991d6b 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(dir, menu, ol, ul) { list-style-position: outside; }
+:is(dir, menu, ol, ul) :is(dir, menu, ol, ul, 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.