Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Closes #3979. As discussed there, this allows for labeled, but
unordered, lists.
Normative changes for implementations:
start
IDL attribute should be introduced, reflecting the start="" content attribute<li>
s inside<ul>
s uses the same algorithm as inside<ol>
s, except thatreversed=""
is ignored.Things that did not change:
<ul type="">
still affect the rendering, even if they are non-conforming for authors to use.type
IDL attribute still does simple string reflection of thetype=""
content attribute. (It moved from the obsolete-features section to the main part of the spec, but its behavior is the same.)Firefox matches (1), (2), and (4). Nobody does (3).
This design was chosen to be as close as possible to Firefox while also being reasonable (thus introducing (3)). Alternate possible designs to discuss:
<ul>
.<ul>
, so that the model is exactly the same for both<ol>
and<ul>
.Let's discuss in #3979 (not in this PR).
/grouping-content.html ( diff )
/indices.html ( diff )
/obsolete.html ( diff )
/rendering.html ( diff )