mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-07 11:42:51 +00:00
LibWeb: Add missing special tag case in the "in body" insertion mode
This commit is contained in:
parent
e5ec05bd3a
commit
f4778d1ba0
Notes:
sideshowbarker
2024-07-19 05:56:24 +09:00
Author: https://github.com/awesomekling
Commit: f4778d1ba0
1 changed files with 4 additions and 1 deletions
|
@ -1228,7 +1228,10 @@ void HTMLDocumentParser::handle_in_body(HTMLToken& token)
|
|||
m_stack_of_open_elements.pop();
|
||||
break;
|
||||
}
|
||||
// FIXME: Handle special elements!
|
||||
if (is_special_tag(node->tag_name())) {
|
||||
PARSE_ERROR();
|
||||
return;
|
||||
}
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue