CSSRuleList.cpp 295 B

1234567891011121314151617181920
  1. /*
  2. * Copyright (c) 2021, Sam Atkins <atkinssj@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include <LibWeb/CSS/CSSRuleList.h>
  7. namespace Web::CSS {
  8. CSSRuleList::CSSRuleList(NonnullRefPtrVector<CSSRule>&& rules)
  9. : m_rules(rules)
  10. {
  11. }
  12. CSSRuleList::~CSSRuleList()
  13. {
  14. }
  15. }