summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/Dump.h
AgeCommit message (Collapse)Author
2022-03-28LibWeb: Implement initial CSSFontFaceRule and FontFace classesSam Atkins
For now, this is the bare minimum that's needed: font-family and src.
2022-03-03LibWeb: Small improvements to layout tree dumpsAndreas Kling
- Say "content-size" instead of just "size" to clarify which size it is - Show box model metrics by default
2021-10-08LibWeb: Implement `@supports` rule :^)Sam Atkins
The main thing missing is that we don't serialize the supports clause, but for actually using a `@supports (something: cool) {}` rule in CSS, it works!
2021-10-01LibWeb: Add CSSMediaRuleSam Atkins
This is the class corresponding to a `@media` rule. It contains a list of media queries and a list of child css rules.
2021-07-14LibWeb: Convert CSS Dump, Selector, & SelectorEngine to east constSam Atkins
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
2021-03-07LibWeb: Rename StyleRule => CSSStyleRuleAndreas Kling
This matches the CSSOM specification.
2021-02-28LibWeb: Added simple parsing for (at)import rulesSviatoslav Peleshko
For now, the parsing is very crude, and parses only the document url. The meta queries for the import are ignored.
2021-02-28LibWeb: Create base class CSSRule for all CSS rulesSviatoslav Peleshko
This is a foundation for handling other ("at") CSS rules.
2021-02-17LibWeb: Convert dbgprintf() => dbgln()Andreas Kling
2021-01-12Libraries: Move to Userland/Libraries/Andreas Kling