mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 09:51:57 -05:00
LibWeb: Add missing special tag case in the "in body" insertion mode
This commit is contained in:
parent
e5ec05bd3a
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
Reference in a new issue