mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 10:18:11 +00: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();
|
m_stack_of_open_elements.pop();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
// FIXME: Handle special elements!
|
if (is_special_tag(node->tag_name())) {
|
||||||
|
PARSE_ERROR();
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue