Serenity Operating System
at master 27 lines 549 B view raw
1/* 2 * Copyright (c) 2020, the SerenityOS developers. 3 * 4 * SPDX-License-Identifier: BSD-2-Clause 5 */ 6 7#pragma once 8 9#include <LibWeb/HTML/HTMLElement.h> 10 11namespace Web::HTML { 12 13class HTMLQuoteElement final : public HTMLElement { 14 WEB_PLATFORM_OBJECT(HTMLQuoteElement, HTMLElement); 15 16public: 17 virtual ~HTMLQuoteElement() override; 18 19 virtual Optional<ARIA::Role> default_role() const override; 20 21private: 22 HTMLQuoteElement(DOM::Document&, DOM::QualifiedName); 23 24 virtual JS::ThrowCompletionOr<void> initialize(JS::Realm&) override; 25}; 26 27}