FontFace.cpp 311 B

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