mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 09:46:04 -05:00
649d2faeab
We had some inconsistencies before: - Sometimes "The", sometimes "the" - Sometimes trailing ".", sometimes no trailing "." I picked the most common one (lowecase "the", trailing ".") and applied it to all copyright headers. By using the exact same string everywhere we can ensure nothing gets missed during a global search (and replace), and that these inconsistencies are not spread any further (as copyright headers are commonly copied to new files).
25 lines
538 B
C++
25 lines
538 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() override;
|
|
|
|
String for_() const { return attribute(HTML::AttributeNames::for_); }
|
|
};
|
|
|
|
}
|