mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 19:04:58 +00:00
Revert "LibWeb: Set doctype node immediately while parsing XML document"
This reverts commit cd446e5e9c.
This broke about 20k WPT subtests, all related to XML parsing. See:
https://wpt.fyi/results/html/the-xhtml-syntax/parsing-xhtml-documents?diff=&filter=ADC&run_id=5154815472828416&run_id=5090731742199808
This commit is contained in:
@@ -182,6 +182,9 @@ ErrorOr<void, ParseError> Parser::parse_with_listener(Listener& listener)
|
||||
if (result.is_error())
|
||||
m_listener->error(result.error());
|
||||
m_listener->document_end();
|
||||
if (m_doctype.has_value()) {
|
||||
m_listener->set_doctype(m_doctype.release_value());
|
||||
}
|
||||
m_root_node.clear();
|
||||
return result;
|
||||
}
|
||||
@@ -618,8 +621,7 @@ ErrorOr<void, ParseError> Parser::parse_doctype_decl()
|
||||
TRY(expect(">"sv));
|
||||
|
||||
rollback.disarm();
|
||||
if (m_listener)
|
||||
m_listener->doctype(doctype);
|
||||
m_doctype = move(doctype);
|
||||
return {};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user