1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 03:17:34 +00:00

LibWeb: Rename StyleRule => CSSStyleRule

This matches the CSSOM specification.
This commit is contained in:
Andreas Kling 2021-03-07 15:00:02 +01:00
parent 3532e1788f
commit 0af4762662
11 changed files with 23 additions and 23 deletions

View file

@ -30,12 +30,12 @@
namespace Web::CSS {
class CSSRule;
class CSSImportRule;
class CSSStyleRule;
class Length;
class Selector;
class StyleDeclaration;
class StyleProperties;
class StyleResolver;
class StyleRule;
class StyleSheet;
enum class Display;
}