HTMLParamElement.h 403 B

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