HTMLQuoteElement.h 526 B

123456789101112131415161718192021222324252627
  1. /*
  2. * Copyright (c) 2020, the SerenityOS developers.
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <LibWeb/HTML/HTMLElement.h>
  8. namespace Web::HTML {
  9. class HTMLQuoteElement final : public HTMLElement {
  10. WEB_PLATFORM_OBJECT(HTMLQuoteElement, HTMLElement);
  11. public:
  12. virtual ~HTMLQuoteElement() override;
  13. virtual Optional<ARIA::Role> default_role() const override;
  14. private:
  15. HTMLQuoteElement(DOM::Document&, DOM::QualifiedName);
  16. virtual void initialize(JS::Realm&) override;
  17. };
  18. }