mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
f87041bf3a
Resulting in a massive rename across almost everywhere! Alongside the namespace change, we now have the following names: * JS::NonnullGCPtr -> GC::Ref * JS::GCPtr -> GC::Ptr * JS::HeapFunction -> GC::Function * JS::CellImpl -> GC::Cell * JS::Handle -> GC::Root
32 lines
785 B
C++
32 lines
785 B
C++
/*
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/ARIA/Roles.h>
|
|
#include <LibWeb/HTML/HTMLElement.h>
|
|
#include <LibWeb/WebIDL/Types.h>
|
|
|
|
namespace Web::HTML {
|
|
|
|
class HTMLPreElement final : public HTMLElement {
|
|
WEB_PLATFORM_OBJECT(HTMLPreElement, HTMLElement);
|
|
GC_DECLARE_ALLOCATOR(HTMLPreElement);
|
|
|
|
public:
|
|
virtual ~HTMLPreElement() override;
|
|
|
|
// https://www.w3.org/TR/html-aria/#el-pre
|
|
virtual Optional<ARIA::Role> default_role() const override { return ARIA::Role::generic; }
|
|
|
|
private:
|
|
HTMLPreElement(DOM::Document&, DOM::QualifiedName);
|
|
|
|
virtual void initialize(JS::Realm&) override;
|
|
virtual void apply_presentational_hints(CSS::StyleProperties&) const override;
|
|
};
|
|
|
|
}
|