HTMLMarqueeElement.h 603 B

12345678910111213141516171819202122232425
  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. // NOTE: This element is marked as obsolete, but is still listed as required by the specification.
  10. class HTMLMarqueeElement final : public HTMLElement {
  11. public:
  12. using WrapperType = Bindings::HTMLMarqueeElementWrapper;
  13. HTMLMarqueeElement(DOM::Document&, DOM::QualifiedName);
  14. virtual ~HTMLMarqueeElement() override;
  15. private:
  16. virtual void apply_presentational_hints(CSS::StyleProperties&) const override;
  17. };
  18. }