AtStyleRule.h 403 B

1234567891011121314151617181920212223242526
  1. /*
  2. * Copyright (c) 2020-2021, the SerenityOS developers.
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <AK/String.h>
  8. #include <LibWeb/CSS/Parser/QualifiedStyleRule.h>
  9. namespace Web::CSS {
  10. class AtStyleRule : public QualifiedStyleRule {
  11. friend class Parser;
  12. public:
  13. AtStyleRule();
  14. ~AtStyleRule();
  15. String to_string() const;
  16. private:
  17. String m_name;
  18. };
  19. }