summaryrefslogtreecommitdiff
path: root/Libraries/LibHTML/CSS
AgeCommit message (Expand)Author
2020-02-06LibDraw: Put all classes in the Gfx namespaceAndreas Kling
2020-02-02LibCore: Put all classes in the Core namespace and remove the leading CAndreas Kling
2020-01-18Meta: Add license header to source filesAndreas Kling
2020-01-05LibHTML: Replace StyleProperties::create(StyleProperties) with clone()Matrix89
2020-01-05Browser+LibHTML: Change the way computed styles are queriedMatrix89
2019-12-18LibHTML: Let's display <basefont> as block-level elements for nowAndreas Kling
2019-12-18LibHTML: Use a fixed-width font for <pre> tags, duh!Andreas Kling
2019-12-16LibHTML: Support the :only-child pseudo classAndreas Kling
2019-12-16LibHTML: Support the :empty pseudo classAndreas Kling
2019-12-16LibHTML: Support the :first-child and :last-child pseudo classesAndreas Kling
2019-12-09AK: Use size_t for the length of stringsAndreas Kling
2019-11-27LibHTML: Add shorthand expansion for border-{style,width,color}Andreas Kling
2019-11-27LibHTML: Implement compound selectorsAndreas Kling
2019-11-21LibHTML: Implement some attribute selector supportAndreas Kling
2019-11-19LibHTML: Failed font lookups should use a bold fallback when fittingAndreas Kling
2019-11-19LibHTML: Implement the universal selector ("*")Andreas Kling
2019-11-19LibHTML: Add the CSS "position" property to CSS/Properties.jsonAndreas Kling
2019-11-18LibHTML: Respect the line-height property if setAndreas Kling
2019-11-18LibHTML: Use floating point numbers throughout the layout treeAndreas Kling
2019-11-18LibHTML: Expand the "padding" shorthand propertyAndreas Kling
2019-11-18LibHTML: Implement the "margin" shorthand propertyAndreas Kling
2019-11-18LibHTML: Start building a simple code generator for CSS propertiesAndreas Kling
2019-11-07LibHTML: Fix the default style for <hr> elementsAndreas Kling
2019-11-07LibHTML: Make the CSS parser return RefPtr'sAndreas Kling
2019-10-26LibHTML: Make <header> and <footer> be "display: block" by defaultAndreas Kling
2019-10-20LibHTML: Implement "text-align: justify"Andreas Kling
2019-10-20LibHTML: Only actually-linked <a> elements should be blue+underlinedAndreas Kling
2019-10-19LibHTML: Implement basic tiled background image supportAndreas Kling
2019-10-18LibHTML: Add a simple font cacheAndreas Kling
2019-10-17LibHTML: Don't assert when encountering an unknown font-weightAndreas Kling
2019-10-17LibHTML: Add stub classes for basic table layoutAndreas Kling
2019-10-16LibHTML: Add the <center> elementAndreas Kling
2019-10-16LibHTML: Implement CSS text-align: left/center/rightAndreas Kling
2019-10-14LibHTML: Implement basic partial style invalidationAndreas Kling
2019-10-14LibHTML: Implement basic :hover pseudo-class supportAndreas Kling
2019-10-14LibHTML: Parse the :link and :hover CSS pseudo-classesAndreas Kling
2019-10-12LibHTML: Add StyleProperties::line_height()Andreas Kling
2019-10-09LibHTML: Implement the <blink> elementAndreas Kling
2019-10-08LibHTML: Use an enum for CSS property ID'sAndreas Kling
2019-10-08LibHTML: Move selector matching into a SelectorEngine namespaceAndreas Kling
2019-10-07LibHTML: Rename "style_properties" to "style" everywhereAndreas Kling
2019-10-06LibHTML: Add is<ElementType> and to<ElementType> helper functionsAndreas Kling
2019-10-06LibHTML: Add adjacent (+) and general (~) sibling combinatorsAndreas Kling
2019-10-06LibHTML: Implement immediate-child selectors (#foo > #bar)Andreas Kling
2019-10-06LibHTML: Implement matching for descendant selectorsAndreas Kling
2019-10-06LibHTML: Fall back to the system default font if we can't find a fontAndreas Kling
2019-10-06LibHTML: Add a little bit of margin around <hr> elementsAndreas Kling
2019-10-06LibHTML: Make the text-decoration inheritance quirk actually workAndreas Kling
2019-10-06LibHTML: Move font loading from LayoutText to StylePropertiesAndreas Kling
2019-10-06LibHTML: Parse descendant relations in CSS selectorsAndreas Kling