1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 06:58:11 +00:00

LibWeb: Move HTML dimension value parsing from CSS to HTML namespace

These are part of HTML, not CSS, so let's not confuse things.
This commit is contained in:
Andreas Kling 2022-03-26 14:29:52 +01:00
parent 434970f022
commit fda25f9505
8 changed files with 121 additions and 117 deletions

View file

@ -186,4 +186,7 @@ private:
StringBuilder m_character_insertion_builder;
};
RefPtr<CSS::StyleValue> parse_dimension_value(StringView);
RefPtr<CSS::StyleValue> parse_nonzero_dimension_value(StringView);
}