HTMLDirectoryElement.h 518 B

12345678910111213141516171819202122
  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 HTMLDirectoryElement final : public HTMLElement {
  11. public:
  12. using WrapperType = Bindings::HTMLDirectoryElementWrapper;
  13. HTMLDirectoryElement(DOM::Document&, DOM::QualifiedName);
  14. virtual ~HTMLDirectoryElement() override;
  15. };
  16. }