HTMLTableCellElement.h 522 B

123456789101112131415161718192021222324
  1. /*
  2. * Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <LibWeb/HTML/HTMLElement.h>
  8. namespace Web::HTML {
  9. class HTMLTableCellElement final : public HTMLElement {
  10. public:
  11. using WrapperType = Bindings::HTMLTableCellElementWrapper;
  12. HTMLTableCellElement(DOM::Document&, DOM::QualifiedName);
  13. virtual ~HTMLTableCellElement() override;
  14. private:
  15. virtual void apply_presentational_hints(CSS::StyleProperties&) const override;
  16. };
  17. }