Serenity Operating System
1/*
2 * Copyright (c) 2022-2023, Sam Atkins <atkinssj@serenityos.org>
3 *
4 * SPDX-License-Identifier: BSD-2-Clause
5 */
6
7#include <LibWeb/CSS/FontFace.h>
8
9namespace Web::CSS {
10
11FontFace::FontFace(FlyString font_family, Vector<Source> sources, Vector<UnicodeRange> unicode_ranges)
12 : m_font_family(move(font_family))
13 , m_sources(move(sources))
14 , m_unicode_ranges(move(unicode_ranges))
15{
16}
17
18}