/* * Copyright (c) 2022, Sam Atkins * * SPDX-License-Identifier: BSD-2-Clause */ #include namespace Web::CSS { FontFace::FontFace(FlyString font_family, Vector sources) : m_font_family(move(font_family)) , m_sources(move(sources)) { } }