diff options
author | Andreas Kling <kling@serenityos.org> | 2021-03-07 15:00:02 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-03-07 17:45:15 +0100 |
commit | 0af476266200a707770959173c9e7e2028235119 (patch) | |
tree | aa37227e53dbf7daf7e4b940bbfe1278cdfa6d87 /Userland/Libraries/LibWeb/CSS/StyleInvalidator.cpp | |
parent | 3532e1788f22d6db1a5c26d7fef28bd391c2f4a0 (diff) | |
download | serenity-0af476266200a707770959173c9e7e2028235119.zip |
LibWeb: Rename StyleRule => CSSStyleRule
This matches the CSSOM specification.
Diffstat (limited to 'Userland/Libraries/LibWeb/CSS/StyleInvalidator.cpp')
-rw-r--r-- | Userland/Libraries/LibWeb/CSS/StyleInvalidator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/CSS/StyleInvalidator.cpp b/Userland/Libraries/LibWeb/CSS/StyleInvalidator.cpp index d5d7b14ca8..41c5159d66 100644 --- a/Userland/Libraries/LibWeb/CSS/StyleInvalidator.cpp +++ b/Userland/Libraries/LibWeb/CSS/StyleInvalidator.cpp @@ -24,8 +24,8 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +#include <LibWeb/CSS/CSSStyleRule.h> #include <LibWeb/CSS/StyleInvalidator.h> -#include <LibWeb/CSS/StyleRule.h> #include <LibWeb/DOM/Document.h> #include <LibWeb/DOM/Element.h> |