You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Automatic update from web-platform-tests
Add InputClosesSelect flag
This flag is intended to de-risk the launch of SelectParserRelaxation by
partially reverting the new parser behavior to the old parser behavior
specifically in the case of an <input> tag being parsed inside a
<select>. The old parser would convert <select><input> into
<select></select><input>, and based on my research, this is the case
that is most likely going to break sites in SelectParserRelaxation:
whatwg/html#10310
Bug: 373672164
Change-Id: I33b40d11c2001092aa076a219dd56c5ea86f13f6
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5936092
Reviewed-by: Mason Freed <[email protected]>
Commit-Queue: Joey Arhar <[email protected]>
Cr-Commit-Position: refs/heads/main@{#1369676}
--
wpt-commits: 00e1df7e329f3d11b91d7b2e11a2db63bbd98ef9
wpt-pr: 48658
Copy file name to clipboardExpand all lines: testing/web-platform/tests/html/semantics/forms/the-select-element/customizable-select/select-parsing.tentative.html
+11Lines changed: 11 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -42,6 +42,10 @@
42
42
</div>
43
43
</select>
44
44
45
+
<selectid=s7>
46
+
<input>
47
+
</select>
48
+
45
49
<divid=afterlast>
46
50
keep this div after the last test case
47
51
</div>
@@ -100,6 +104,13 @@
100
104
`);
101
105
},'Divs and imgs should be allowed as direct children of select and within options without a datalist.');
0 commit comments