CSSRule.cpp 184 B

123456789101112131415
  1. /*
  2. * Copyright (c) 2021, the SerenityOS developers.
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include <LibWeb/CSS/CSSRule.h>
  7. namespace Web::CSS {
  8. CSSRule::~CSSRule()
  9. {
  10. }
  11. }