2021-02-21 13:36:34 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2021, the SerenityOS developers.
|
|
|
|
|
*
|
2021-04-22 05:24:48 -03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2021-02-21 13:36:34 -03:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <AK/URL.h>
|
|
|
|
|
#include <LibWeb/CSS/CSSImportRule.h>
|
2021-03-07 12:14:04 -03:00
|
|
|
#include <LibWeb/CSS/CSSStyleSheet.h>
|
2021-02-21 13:36:34 -03:00
|
|
|
|
|
|
|
|
namespace Web::CSS {
|
|
|
|
|
|
|
|
|
|
CSSImportRule::CSSImportRule(URL url)
|
|
|
|
|
: m_url(move(url))
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CSSImportRule::~CSSImportRule()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|