CSSImportRule.cpp 326 B

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