-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Relax <select>
parser
#10557
base: main
Are you sure you want to change the base?
Relax <select>
parser
#10557
Conversation
Why does this also make a bunch of changes to the processing model of |
The changes in the processing model do support the new proposed content model for select, but they also mitigate compat issues for websites which are already putting tags in between For example, without these changes to the processing model, the following <select>
<div>
<option>...</option>
...
</div>
</select> In my compat analysis, I found a lot of websites which are doing this, so in order to ship the parser changes separately from customizable select in chrome, I plan to ship the parser changes and these processing model changes together, because otherwise there would be too much breakage. I'm happy to put them in a separate PR if you want, or keep them here and update the commit message (sorry for not putting it in there). Which would you prefer? |
Thanks! Given that rationale I think it's good to couple the changes, but that should be in the commit message as well. |
This doesn't define optional tags for The definition for "have a particular element in select scope" may be needed for that, but should be changed to be similar to "have a particular element in button scope" (but for In particular, allow these without a parse error: <select>
<optgroup>
<option>
<optgroup>
</select> The second <select>
<option><p>
<option>
</select> This should generate implied end tags and pop the <select>
<optgroup>
<hr>
<option>
<hr>
</select> The See how the parser deals with |
cf37251
to
afb732d
Compare
Done.
@zcorpan thanks for the feedback! I did some experimenting and added some logic to the start tags for option, optgroup, and hr. What do you think? |
afb732d
to
e08df7e
Compare
|
I thought that this is covered by "While the stack of open elements has an option element in select scope". What exactly should I change?
Done
I'm guessing this is from "If the current node is not now a rtc element or a ruby element, this is a parse error," right? Should I add "If the current node is not now an option element, this is a parse error" after "While the stack of open elements has an option element in select scope, pop an element from the stack of open elements"? |
ea6d608
to
21bc5e6
Compare
The "in select scope" I think should be removed altogether since it assumes the stack will not have other elements when in a High-level of what I think should happen: when parsing option or optgroup start tag: check that select is in scope, check that option or optgroup is in scope, generate implied end tags (except for optgroup when handling I can look into this more next week and suggest more specific changes. |
21bc5e6
to
a57c84e
Compare
Thanks! I gave this a try |
@zcorpan how does the latest text look? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the option/optgroup cases are right after these changes.
a57c84e
to
a1edb00
Compare
a1edb00
to
9507110
Compare
I was talking to @mfreed7 about the changes we've made in the PR so far, and I feel like I couldn't provide a good explanation for why we are making the parser not support cases like these:
Is it just compat reasons? Is there a good justification? |
This patch makes the parser allow additional tags in <select> besides <option>, <optgroup>, and <hr>, mostly by removing the "in select" and "in select in table" parser modes. In order to replicate the behavior where opening a <select> tag within another open <select> tag inserts a </select> close tag, a traversal through the stack of open elements was added which I borrowed from the <button> part of the parser. This will need test changes to be implemented in html5lib. Fixes whatwg#10310
9507110
to
1330ad5
Compare
It would be a breaking change from what is conforming HTML today, and break compat for sites that omit |
- whatwg/html#10557 and pin to upstream html5lib-tests - html5lib/html5lib-tests#178
Per discussion in Matrix (1, 2), the web compat situation is not yet clear, see e.g. @josepharhar what is the rollout plan in Chromium? I think it makes sense to wait with merging this PR until it has been shipping in Stable for a bit. |
I disabled this new parser behavior in chrome 131 due to a bug with one of multiple code paths which collects options to render in the select's popup which doesn't exist in the spec. I am going to re-enable in chrome 133, and yes
That sounds reasonable to me especially since shipping this change in chrome is not blocked by merging this PR. |
This patch makes the HTML parser convert nested <select> tags into </select> instead of </select><select> for backwards compatibility with the old parser. This behavior will apply to any nested selects, such as <select><div><select>. This was recommended here: whatwg/html#10557 (comment) This will be tested here: html5lib/html5lib-tests#178 (comment) Change-Id: I7a39901582b96edc10deca8794b9ce117aa08229
This patch makes the HTML parser convert nested <select> tags into </select> instead of </select><select> for backwards compatibility with the old parser. This behavior will apply to any nested selects, such as <select><div><select>. This was recommended here: whatwg/html#10557 (comment) This will be tested here: html5lib/html5lib-tests#178 (comment) Change-Id: I7a39901582b96edc10deca8794b9ce117aa08229 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6040687 Commit-Queue: Joey Arhar <[email protected]> Reviewed-by: David Baron <[email protected]> Cr-Commit-Position: refs/heads/main@{#1391787}
This patch makes the HTML parser convert nested <select> tags into </select> instead of </select><select> for backwards compatibility with the old parser. This behavior will apply to any nested selects, such as <select><div><select>. This was recommended here: whatwg/html#10557 (comment) This will be tested here: html5lib/html5lib-tests#178 (comment) Change-Id: I7a39901582b96edc10deca8794b9ce117aa08229 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6040687 Commit-Queue: Joey Arhar <[email protected]> Reviewed-by: David Baron <[email protected]> Cr-Commit-Position: refs/heads/main@{#1391787}
This patch makes the HTML parser convert nested <select> tags into </select> instead of </select><select> for backwards compatibility with the old parser. This behavior will apply to any nested selects, such as <select><div><select>. This was recommended here: whatwg/html#10557 (comment) This will be tested here: html5lib/html5lib-tests#178 (comment) Change-Id: I7a39901582b96edc10deca8794b9ce117aa08229 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6040687 Commit-Queue: Joey Arhar <[email protected]> Reviewed-by: David Baron <[email protected]> Cr-Commit-Position: refs/heads/main@{#1391787}
- Allow general content within select element - Update processing of options for select See whatwg/html#10557
I think this is missing a required spec change: https://html.spec.whatwg.org/multipage/parsing.html#:~:text=An%20end%20tag%20whose%20tag%20name%20is%20one%20of%3A%20%22address%22 - select needs adding to this list of elements? |
Context here: whatwg/html#10557 (comment) Tests will be added here: html5lib/html5lib-tests#178 (comment) Change-Id: I62cd28979abff3d5ea30b3502872f273a74bfde4 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6042598 Commit-Queue: Joey Arhar <[email protected]> Reviewed-by: David Baron <[email protected]> Cr-Commit-Position: refs/heads/main@{#1391836}
Btw I think this test needs updating as it's currently failing in Chromium with this change |
@lukewarlow good catch! Right now the end tag is handled by "Any other end tag", which will ignore the tag if the current node is not a |
Thanks, I added select there in this PR. It's already included there in chromium.
Thanks, fixing that here. |
@josepharhar Are the test changes in html5lib/html5lib-tests#178 up to date with these proposed spec changes now? It's been hard to follow along across the multiple repositories. |
I just updated all tests in the PR |
…t>, a=testonly Automatic update from web-platform-tests Change parser behavior of <select><select> This patch makes the HTML parser convert nested <select> tags into </select> instead of </select><select> for backwards compatibility with the old parser. This behavior will apply to any nested selects, such as <select><div><select>. This was recommended here: whatwg/html#10557 (comment) This will be tested here: html5lib/html5lib-tests#178 (comment) Change-Id: I7a39901582b96edc10deca8794b9ce117aa08229 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6040687 Commit-Queue: Joey Arhar <[email protected]> Reviewed-by: David Baron <[email protected]> Cr-Commit-Position: refs/heads/main@{#1391787} -- wpt-commits: c4c67222e7b0677f92f43280837db48473603f1e wpt-pr: 49525
…t>, a=testonly Automatic update from web-platform-tests Change parser behavior of <select><select> This patch makes the HTML parser convert nested <select> tags into </select> instead of </select><select> for backwards compatibility with the old parser. This behavior will apply to any nested selects, such as <select><div><select>. This was recommended here: whatwg/html#10557 (comment) This will be tested here: html5lib/html5lib-tests#178 (comment) Change-Id: I7a39901582b96edc10deca8794b9ce117aa08229 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6040687 Commit-Queue: Joey Arhar <[email protected]> Reviewed-by: David Baron <[email protected]> Cr-Commit-Position: refs/heads/main@{#1391787} -- wpt-commits: c4c67222e7b0677f92f43280837db48473603f1e wpt-pr: 49525
…t>, a=testonly Automatic update from web-platform-tests Change parser behavior of <select><select> This patch makes the HTML parser convert nested <select> tags into </select> instead of </select><select> for backwards compatibility with the old parser. This behavior will apply to any nested selects, such as <select><div><select>. This was recommended here: whatwg/html#10557 (comment) This will be tested here: html5lib/html5lib-tests#178 (comment) Change-Id: I7a39901582b96edc10deca8794b9ce117aa08229 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6040687 Commit-Queue: Joey Arhar <jarharchromium.org> Reviewed-by: David Baron <dbaronchromium.org> Cr-Commit-Position: refs/heads/main{#1391787} -- wpt-commits: c4c67222e7b0677f92f43280837db48473603f1e wpt-pr: 49525 UltraBlame original commit: 666bbfe1252e12af9394a702ad62918ae14f44c2
…t>, a=testonly Automatic update from web-platform-tests Change parser behavior of <select><select> This patch makes the HTML parser convert nested <select> tags into </select> instead of </select><select> for backwards compatibility with the old parser. This behavior will apply to any nested selects, such as <select><div><select>. This was recommended here: whatwg/html#10557 (comment) This will be tested here: html5lib/html5lib-tests#178 (comment) Change-Id: I7a39901582b96edc10deca8794b9ce117aa08229 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6040687 Commit-Queue: Joey Arhar <jarharchromium.org> Reviewed-by: David Baron <dbaronchromium.org> Cr-Commit-Position: refs/heads/main{#1391787} -- wpt-commits: c4c67222e7b0677f92f43280837db48473603f1e wpt-pr: 49525 UltraBlame original commit: 666bbfe1252e12af9394a702ad62918ae14f44c2
…t>, a=testonly Automatic update from web-platform-tests Change parser behavior of <select><select> This patch makes the HTML parser convert nested <select> tags into </select> instead of </select><select> for backwards compatibility with the old parser. This behavior will apply to any nested selects, such as <select><div><select>. This was recommended here: whatwg/html#10557 (comment) This will be tested here: html5lib/html5lib-tests#178 (comment) Change-Id: I7a39901582b96edc10deca8794b9ce117aa08229 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6040687 Commit-Queue: Joey Arhar <jarharchromium.org> Reviewed-by: David Baron <dbaronchromium.org> Cr-Commit-Position: refs/heads/main{#1391787} -- wpt-commits: c4c67222e7b0677f92f43280837db48473603f1e wpt-pr: 49525 UltraBlame original commit: 666bbfe1252e12af9394a702ad62918ae14f44c2
This patch makes the parser allow additional tags in
<select>
besides<option>
,<optgroup>
, and<hr>
, mostly by removing the "in select" and "in select in table" parser modes.In order to replicate the behavior where opening a
<select>
tag within another open<select>
tag inserts a</select>
close tag, a traversal through the stack of open elements was added which I borrowed from the<button>
part of the parser.This patch also changes the processing model to make
<select>
look through all its descendants in the DOM tree for<option>
elements, rather than just children and optgroup children which conform to the content model. This is needed for compat reasons because there are websites which put other tags in between their<select>
and<option>
s which would break with this parser change unless we also update this processing model. More context here and here.Fixes #10310
<select>
parser mozilla/standards-positions#1086<select>
parser WebKit/standards-positions#414(See WHATWG Working Mode: Changes for more details.)
/form-elements.html ( diff )
/index.html ( diff )
/infrastructure.html ( diff )
/parsing.html ( diff )