blob: 70db482ce63d72f6f8da8de6c45915ca0cd2f8f2 [file] [log] [blame]
eseidela781b6a2006-05-15 21:57:01 +00001/*
eseidela781b6a2006-05-15 21:57:01 +00002 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
darin@apple.com877ce5b2010-05-28 15:38:58 +00004 * Copyright (C) 2010 Apple Inc. All rights reserved.
eseidela781b6a2006-05-15 21:57:01 +00005 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Library General Public License for more details.
15 *
16 * You should have received a copy of the GNU Library General Public License
17 * along with this library; see the file COPYING.LIB. If not, write to
ddkilzerc8eccec2007-09-26 02:29:57 +000018 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 * Boston, MA 02110-1301, USA.
eseidela781b6a2006-05-15 21:57:01 +000020 *
21 */
22
commit-queue@webkit.orgd862d772016-10-31 22:07:53 +000023#pragma once
eseidela781b6a2006-05-15 21:57:01 +000024
25#include "HTMLElement.h"
26
27namespace WebCore {
28
andersca@apple.com16d2dd42014-01-16 23:08:24 +000029class HTMLPreElement final : public HTMLElement {
fpizlo@apple.com197cd322018-03-17 06:11:00 +000030 WTF_MAKE_ISO_ALLOCATED(HTMLPreElement);
eseidela781b6a2006-05-15 21:57:01 +000031public:
weinig@apple.com02f433a2015-01-06 22:32:48 +000032 static Ref<HTMLPreElement> create(const QualifiedName&, Document&);
darin@apple.com877ce5b2010-05-28 15:38:58 +000033
darin@apple.com877ce5b2010-05-28 15:38:58 +000034private:
weinig@apple.com6becaaf2013-09-14 21:33:13 +000035 HTMLPreElement(const QualifiedName&, Document&);
eseidela781b6a2006-05-15 21:57:01 +000036
commit-queue@webkit.org188bacd2016-07-15 02:17:24 +000037 bool isPresentationAttribute(const QualifiedName&) const final;
38 void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStyleProperties&) final;
eseidela781b6a2006-05-15 21:57:01 +000039};
40
weinigab5f09e2006-07-29 23:15:25 +000041} // namespace WebCore