summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/CSS/Identifiers.json
AgeCommit message (Collapse)Author
2021-07-22LibWeb: Resolve CSS text-decoration from value listSam Atkins
This detects and resolves these in the text-decoration property, in any order: - text-decoration-color - text-decoration-line - text-decoration-style Only the solid underline renders, but all three sub-properties are assigned correctly.
2021-07-22LibWeb: Resolve CSS font property from value listSam Atkins
The font property now resolves into its various parts: - font-family - font-weight - font-size - font-style - line-height The font-variant and font-stretch parts are left unparsed since LibWeb doesn't know how to render those. Added `fonts.html` as a test for various forms of `font` declarations, based on the examples in the spec.
2021-07-22LibWeb: Resolve CSS list-style from value listSam Atkins
This resolves the three sub-properties, appearing in any order: - list-style-image - list-style-position - list-style-type Added `list-style-position` values to support this, though they are not yet used in rendering.
2021-07-19LibWeb: Add parsing for the justify-content propertyTobias Christiansen
2021-07-04LibWeb: Add roman numerals as a list-style for ol'sTobias Christiansen
This patch adds support for the identifiers upper-roman and lower-roman of the list-style property.
2021-06-06LibWeb: Parse flex-basisTobias Christiansen
Flex-basis accepts either 'content' or a Length.
2021-06-06LibWeb: Add parsing for flex-wrap propertyTobias Christiansen
2021-04-29LibWeb: Add list-style-type: upper-latin and upper-alpha supportTobias Christiansen
2021-04-29LibWeb: Add list-style-type: lower-alpha and lower-latin supportTobias Christiansen
They achieve the same, a list which markers are lowercase (latin) characters.
2021-04-29LibWeb: Add list-style-type: decimal-leading-zero supportTobias Christiansen
This doesn't exactly do what you would think from its name: It surely adds an extra leading zero to the front of a number, but only if the number is less than 10. CSS is weird sometimes.
2021-04-03LibWeb: Store computed CSS value of background-repeatTimothy Flynn
2021-02-28LibWeb: Parese the CSS "cursor" propertyAdam Hodgen
2021-02-22LibWeb: Add parsing and application of CSS "overflow" propertyAndreas Kling
We don't actually do anything with the values yet, but now they are available for layout nodes once we are ready to implement them.
2021-01-18LibWeb: Parse the CSS "flex-direction" propertyAndreas Kling
2021-01-18LibWeb: Parse "display: flex" and create BlockBox layout nodes for themAndreas Kling
I'm not 100% sure that BlockBox is the right layout node for flex containers, but it's the most obviously fitting one we already have.
2021-01-12Libraries: Move to Userland/Libraries/Andreas Kling