summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/CSS/StyleInvalidator.cpp
AgeCommit message (Collapse)Author
2021-04-22Everywhere: Use linusg@serenityos.org for my copyright headersLinus Groh
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-04-06LibWeb: Rename "for_each_in_subtree(_of_type)" to ↵Luke
"for_each_in_inclusive_subtree(_of_type)" This is because it includes the initial node that the function was called on, which makes it "inclusive" as according to the spec. This is important as there are non-inclusive variants, particularly used in the node mutation algorithms.
2021-03-07LibWeb: Rename StyleRule => CSSStyleRuleAndreas Kling
This matches the CSSOM specification.
2021-02-28LibWeb: Create base class CSSRule for all CSS rulesSviatoslav Peleshko
This is a foundation for handling other ("at") CSS rules.
2021-01-12Libraries: Move to Userland/Libraries/Andreas Kling