mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 23:53:20 +00:00
21 lines
295 B
C++
21 lines
295 B
C++
![]() |
/*
|
||
|
* Copyright (c) 2021, Sam Atkins <atkinssj@serenityos.org>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#include <LibWeb/CSS/CSSRuleList.h>
|
||
|
|
||
|
namespace Web::CSS {
|
||
|
|
||
|
CSSRuleList::CSSRuleList(NonnullRefPtrVector<CSSRule>&& rules)
|
||
|
: m_rules(rules)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
CSSRuleList::~CSSRuleList()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
}
|