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

LibWeb: Add a parser for the HTML "dimension value" microsyntax

This commit is contained in:
Andreas Kling 2022-03-26 11:38:51 +01:00
parent 2e6f5fddef
commit 075bdfdef8
2 changed files with 90 additions and 0 deletions

View file

@ -359,5 +359,6 @@ NonnullRefPtrVector<CSS::MediaQuery> parse_media_query_list(CSS::ParsingContext
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);
}