2022-03-28 16:30:26 -03:00
|
|
|
/*
|
2023-02-18 12:13:29 -03:00
|
|
|
* Copyright (c) 2022-2023, Sam Atkins <atkinssj@serenityos.org>
|
2022-03-28 16:30:26 -03:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <LibWeb/CSS/FontFace.h>
|
|
|
|
|
|
|
|
|
|
namespace Web::CSS {
|
|
|
|
|
|
2023-02-18 12:13:29 -03:00
|
|
|
FontFace::FontFace(FlyString font_family, Vector<Source> sources, Vector<UnicodeRange> unicode_ranges)
|
2022-03-28 16:30:26 -03:00
|
|
|
: m_font_family(move(font_family))
|
|
|
|
|
, m_sources(move(sources))
|
2022-03-31 12:39:52 -03:00
|
|
|
, m_unicode_ranges(move(unicode_ranges))
|
2022-03-28 16:30:26 -03:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|