diff options
author | Linus Groh <mail@linusgroh.de> | 2022-02-15 18:30:01 +0000 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-02-15 23:24:34 +0100 |
commit | 9130ecfd5e318eb88f02c688ec5a7fc9a76455ff (patch) | |
tree | 66327e737b18874f1018b18a067156aa93c388c5 /Userland/Libraries/LibWeb | |
parent | f61fb084928fd90c23d72f09c3539d068db560b8 (diff) | |
download | serenity-9130ecfd5e318eb88f02c688ec5a7fc9a76455ff.zip |
LibWeb: Remove unused HTMLParser function declaration
There is no implementation of this function:
HTMLParser::stack_of_open_elements_has_element_with_tag_name_in_scope
Diffstat (limited to 'Userland/Libraries/LibWeb')
-rw-r--r-- | Userland/Libraries/LibWeb/HTML/Parser/HTMLParser.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/Parser/HTMLParser.h b/Userland/Libraries/LibWeb/HTML/Parser/HTMLParser.h index 9805e43094..683ea61dda 100644 --- a/Userland/Libraries/LibWeb/HTML/Parser/HTMLParser.h +++ b/Userland/Libraries/LibWeb/HTML/Parser/HTMLParser.h @@ -100,7 +100,6 @@ private: void generate_implied_end_tags(const FlyString& exception = {}); void generate_all_implied_end_tags_thoroughly(); - bool stack_of_open_elements_has_element_with_tag_name_in_scope(const FlyString& tag_name); NonnullRefPtr<DOM::Element> create_element_for(const HTMLToken&, const FlyString& namespace_); struct AdjustedInsertionLocation { |