mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-03 04:52:06 +02:00
LibWeb: Fix broken parsing of </select> during "in select" insertion
This commit is contained in:
Notes:
sideshowbarker
2024-07-19 05:38:19 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/2f26d4c6a1a
@@ -1933,7 +1933,7 @@ void HTMLDocumentParser::handle_in_select(HTMLToken& token)
|
||||
}
|
||||
|
||||
if (token.is_end_tag() && token.tag_name() == HTML::TagNames::select) {
|
||||
if (m_stack_of_open_elements.has_in_select_scope(HTML::TagNames::select)) {
|
||||
if (!m_stack_of_open_elements.has_in_select_scope(HTML::TagNames::select)) {
|
||||
PARSE_ERROR();
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user