ladybird/Userland/Libraries/LibWeb/CSS/CSSStyleRule.cpp

22 lines
413 B
C++
Raw Normal View History

/*
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibWeb/CSS/CSSStyleRule.h>
namespace Web::CSS {
CSSStyleRule::CSSStyleRule(NonnullRefPtrVector<Selector>&& selectors, NonnullRefPtr<CSSStyleDeclaration>&& declaration)
: m_selectors(move(selectors))
, m_declaration(move(declaration))
{
2019-06-21 20:54:13 +02:00
}
CSSStyleRule::~CSSStyleRule()
2019-06-21 20:54:13 +02:00
{
}
}