
Instead of making each Layout::Node compute style for itself, we now compute it in TreeBuilder before even calling create_layout_node(). For non-element DOM nodes, we create the style and layout tree node in TreeBuilder. This allows us to move create_layout_node() from DOM::Node to DOM::Element.
25 lines
573 B
C++
25 lines
573 B
C++
/*
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/HTML/HTMLElement.h>
|
|
|
|
namespace Web::HTML {
|
|
|
|
class HTMLLabelElement final : public HTMLElement {
|
|
public:
|
|
using WrapperType = Bindings::HTMLLabelElementWrapper;
|
|
|
|
HTMLLabelElement(DOM::Document&, QualifiedName);
|
|
virtual ~HTMLLabelElement() override;
|
|
|
|
virtual RefPtr<Layout::Node> create_layout_node(NonnullRefPtr<CSS::StyleProperties>) override;
|
|
|
|
String for_() const { return attribute(HTML::AttributeNames::for_); }
|
|
};
|
|
|
|
}
|