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

LibWeb: Add parser for the HTML "non-zero dimensions value" microsyntax

This commit is contained in:
Andreas Kling 2022-03-26 14:11:03 +01:00
parent fe908e7db2
commit 28c929e85c
2 changed files with 23 additions and 0 deletions

View file

@ -360,5 +360,6 @@ 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);
}