mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 04:14:58 +00:00
LibWeb: Fix broken parsing of </select> during "in select" insertion
This commit is contained in:
parent
17d26b92f8
commit
2f26d4c6a1
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue