HTMLBRElement.h 506 B

1234567891011121314151617181920212223
  1. /*
  2. * Copyright (c) 2018-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 HTMLBRElement final : public HTMLElement {
  10. public:
  11. using WrapperType = Bindings::HTMLBRElementWrapper;
  12. HTMLBRElement(DOM::Document&, DOM::QualifiedName);
  13. virtual ~HTMLBRElement() override;
  14. virtual RefPtr<Layout::Node> create_layout_node(NonnullRefPtr<CSS::StyleProperties>) override;
  15. };
  16. }