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

LibWeb: Rename StyleDeclaration => CSSStyleDeclaration to match CSSOM

This commit is contained in:
Andreas Kling 2021-03-13 20:11:33 +01:00
parent e44fbbe5c0
commit 0759f54bd3
10 changed files with 25 additions and 25 deletions

View file

@ -28,7 +28,7 @@
namespace Web::CSS {
CSSStyleRule::CSSStyleRule(Vector<Selector>&& selectors, NonnullRefPtr<StyleDeclaration>&& declaration)
CSSStyleRule::CSSStyleRule(Vector<Selector>&& selectors, NonnullRefPtr<CSSStyleDeclaration>&& declaration)
: m_selectors(move(selectors))
, m_declaration(move(declaration))
{