ladybird/Userland/Libraries/LibWeb/HTML/HTMLPreElement.h

24 lines
488 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 HTMLPreElement final : public HTMLElement {
public:
using WrapperType = Bindings::HTMLPreElementWrapper;
HTMLPreElement(DOM::Document&, DOM::QualifiedName);
virtual ~HTMLPreElement() override;
private:
virtual void apply_presentational_hints(CSS::StyleProperties&) const override;
};
}