blob: 0c75ed71ca0db92e5c1e6855300ec1cce6e308a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*
* Copyright (c) 2021, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <AK/URL.h>
#include <LibWeb/CSS/CSSImportRule.h>
#include <LibWeb/CSS/CSSStyleSheet.h>
namespace Web::CSS {
CSSImportRule::CSSImportRule(URL url)
: m_url(move(url))
{
}
CSSImportRule::~CSSImportRule()
{
}
}
|