diff options
author | Andreas Kling <kling@serenityos.org> | 2020-06-21 22:29:05 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-06-21 22:29:05 +0200 |
commit | 07d976716fdb323de1087ac0378060a7e20eb18c (patch) | |
tree | 0a108855ba74e8154afa020d59e71a4b6df21773 /Libraries/LibWeb/Parser/HTMLParser.h | |
parent | c9d55e3b80ebd97ce62d7c637f27e353e6a175fa (diff) | |
download | serenity-07d976716fdb323de1087ac0378060a7e20eb18c.zip |
LibWeb: Remove most uses of the old HTML parser
The only remaining client of the old parser is the fragment parser used
by the Element.innerHTML setter. We'll need to implement a bit more
stuff in the new parser before we can switch that over.
Diffstat (limited to 'Libraries/LibWeb/Parser/HTMLParser.h')
-rw-r--r-- | Libraries/LibWeb/Parser/HTMLParser.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Libraries/LibWeb/Parser/HTMLParser.h b/Libraries/LibWeb/Parser/HTMLParser.h index da60ddcca1..37e706fc1a 100644 --- a/Libraries/LibWeb/Parser/HTMLParser.h +++ b/Libraries/LibWeb/Parser/HTMLParser.h @@ -33,7 +33,6 @@ namespace Web { class DocumentFragment; -RefPtr<Document> parse_html_document(const StringView&, const URL& = URL(), const String& encoding = "utf-8"); RefPtr<DocumentFragment> parse_html_fragment(Document&, const StringView&, const String& encoding = "utf-8"); } |