LibWeb: Port DOM::Document from DeprecatedString

This commit is contained in:
Shannon Booth 2023-12-03 08:58:43 +13:00 committed by Andreas Kling
parent c4d3134436
commit f976ec005c
Notes: sideshowbarker 2024-07-17 07:11:12 +09:00
12 changed files with 55 additions and 55 deletions

View file

@ -219,7 +219,7 @@ void HTMLParser::run()
void HTMLParser::run(const AK::URL& url)
{
m_document->set_url(url);
m_document->set_source(m_tokenizer.source());
m_document->set_source(MUST(String::from_deprecated_string(m_tokenizer.source())));
run();
the_end();
m_document->detach_parser({});