ladybird/Libraries/LibHTML/CSS
Andreas Kling e6e41e4fb8 LibHTML: Start building a simple code generator for CSS properties
Code for parsing and stringifying CSS properties is now generated based
on LibHTML/CSS/Properties.json

At the moment, the file tells us three things:

- The name of a property
- Its initial value
- Whether it's inherited

Also, for shorthand properties, it provides a list of all the longhand
properties it may expand too. This is not actually used in the engine
yet though.

This *finally* makes layout tree dumps show the names of CSS properties
in effect, instead of "CSS::PropertyID(32)" and such. :^)
2019-11-18 11:48:41 +01:00
..
.gitignore LibHTML: Start building a simple code generator for CSS properties 2019-11-18 11:48:41 +01:00
Default.css LibHTML: Fix the default style for <hr> elements 2019-11-07 21:35:59 +01:00
Length.h AK: Rename <AK/AKString.h> to <AK/String.h> 2019-09-06 15:36:54 +02:00
LengthBox.h Libraries: Create top level directory for libraries. 2019-07-04 16:16:50 +02:00
Properties.json LibHTML: Start building a simple code generator for CSS properties 2019-11-18 11:48:41 +01:00
Selector.cpp Libraries: Create top level directory for libraries. 2019-07-04 16:16:50 +02:00
Selector.h LibHTML: Parse the :link and :hover CSS pseudo-classes 2019-10-14 17:31:52 +02:00
SelectorEngine.cpp LibHTML: Only actually-linked <a> elements should be blue+underlined 2019-10-20 10:07:26 +02:00
SelectorEngine.h LibHTML: Move selector matching into a SelectorEngine namespace 2019-10-08 15:35:05 +02:00
Specificity.h Libraries: Create top level directory for libraries. 2019-07-04 16:16:50 +02:00
StyleDeclaration.cpp LibHTML: Fix incorrect CSS object model 2019-09-30 20:06:17 +02:00
StyleDeclaration.h LibHTML: Use an enum for CSS property ID's 2019-10-08 15:35:05 +02:00
StyleProperties.cpp LibHTML: Add a simple font cache 2019-10-18 23:06:03 +02:00
StyleProperties.h LibHTML: Implement basic partial style invalidation 2019-10-14 18:33:23 +02:00
StyleResolver.cpp LibHTML: Make the CSS parser return RefPtr's 2019-11-07 17:58:54 +01:00
StyleResolver.h LibHTML: Use an enum for CSS property ID's 2019-10-08 15:35:05 +02:00
StyleRule.cpp LibHTML: Fix incorrect CSS object model 2019-09-30 20:06:17 +02:00
StyleRule.h LibHTML: Fix incorrect CSS object model 2019-09-30 20:06:17 +02:00
StyleSheet.cpp Libraries: Create top level directory for libraries. 2019-07-04 16:16:50 +02:00
StyleSheet.h Libraries: Create top level directory for libraries. 2019-07-04 16:16:50 +02:00
StyleValue.cpp LibHTML: Implement basic tiled background image support 2019-10-19 11:49:46 +02:00
StyleValue.h LibHTML: Implement "text-align: justify" 2019-10-20 12:55:55 +02:00