summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/CSS/Parser/Function.h
AgeCommit message (Collapse)Author
2023-02-15LibWeb: Port CSS::Parser::Function to new StringsSam Atkins
2023-01-09AK+Everywhere: Rename FlyString to DeprecatedFlyStringTimothy Flynn
DeprecatedFlyString relies heavily on DeprecatedString's StringImpl, so let's rename it to A) match the name of DeprecatedString, B) write a new FlyString class that is tied to String.
2022-12-06Everywhere: Rename to_{string => deprecated_string}() where applicableLinus Groh
This will make it easier to support both string types at the same time while we convert code, and tracking down remaining uses. One big exception is Value::to_string() in LibJS, where the name is dictated by the ToString AO.
2022-12-06AK+Everywhere: Rename String to DeprecatedStringLinus Groh
We have a new, improved string type coming up in AK (OOM aware, no null state), and while it's going to use UTF-8, the name UTF8String is a mouthful - so let's free up the String name by renaming the existing class. Making the old one have an annoying name will hopefully also help with quick adoption :^)
2022-04-12LibWeb: Break friendship between CSS Function and ParserSam Atkins
Again, this means deviating from the spec by creating a complete Function in one go instead of creating it empty and then poking at its internals.
2022-04-12LibWeb: Make Function.m_name a FlyStringSam Atkins
2022-04-12LibWeb: Move/rename StyleFunctionRule to Parser::FunctionSam Atkins