HTMLPreElement.h 526 B

1234567891011121314151617181920212223242526
  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 HTMLPreElement final : public HTMLElement {
  10. WEB_PLATFORM_OBJECT(HTMLPreElement, HTMLElement);
  11. public:
  12. virtual ~HTMLPreElement() override;
  13. private:
  14. HTMLPreElement(DOM::Document&, DOM::QualifiedName);
  15. virtual void apply_presentational_hints(CSS::StyleProperties&) const override;
  16. };
  17. }
  18. WRAPPER_HACK(HTMLPreElement, Web::HTML)