1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:07:36 +00:00

LibWeb: Remove the totally ad-hoc parse_html_length()

All clients of this API have been migrated to HTML dimension value
parsing instead.
This commit is contained in:
Andreas Kling 2022-03-26 14:21:22 +01:00
parent 7df62c64b7
commit 434970f022
2 changed files with 1 additions and 23 deletions

View file

@ -358,7 +358,6 @@ RefPtr<CSS::MediaQuery> parse_media_query(CSS::ParsingContext const&, StringView
NonnullRefPtrVector<CSS::MediaQuery> parse_media_query_list(CSS::ParsingContext const&, StringView);
RefPtr<CSS::Supports> parse_css_supports(CSS::ParsingContext const&, StringView);
RefPtr<CSS::StyleValue> parse_html_length(DOM::Document const&, StringView);
RefPtr<CSS::StyleValue> parse_dimension_value(StringView);
RefPtr<CSS::StyleValue> parse_nonzero_dimension_value(StringView);