eseidel | a781b6a | 2006-05-15 21:57:01 +0000 | [diff] [blame] | 1 | /* |
eseidel | a781b6a | 2006-05-15 21:57:01 +0000 | [diff] [blame] | 2 | * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 | * (C) 1999 Antti Koivisto (koivisto@kde.org) |
darin@apple.com | 877ce5b | 2010-05-28 15:38:58 +0000 | [diff] [blame] | 4 | * Copyright (C) 2010 Apple Inc. All rights reserved. |
eseidel | a781b6a | 2006-05-15 21:57:01 +0000 | [diff] [blame] | 5 | * |
| 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 |
ddkilzer | c8eccec | 2007-09-26 02:29:57 +0000 | [diff] [blame] | 18 | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 19 | * Boston, MA 02110-1301, USA. |
eseidel | a781b6a | 2006-05-15 21:57:01 +0000 | [diff] [blame] | 20 | * |
| 21 | */ |
| 22 | |
commit-queue@webkit.org | d862d77 | 2016-10-31 22:07:53 +0000 | [diff] [blame] | 23 | #pragma once |
eseidel | a781b6a | 2006-05-15 21:57:01 +0000 | [diff] [blame] | 24 | |
| 25 | #include "HTMLElement.h" |
| 26 | |
| 27 | namespace WebCore { |
| 28 | |
andersca@apple.com | 16d2dd4 | 2014-01-16 23:08:24 +0000 | [diff] [blame] | 29 | class HTMLPreElement final : public HTMLElement { |
fpizlo@apple.com | 197cd32 | 2018-03-17 06:11:00 +0000 | [diff] [blame] | 30 | WTF_MAKE_ISO_ALLOCATED(HTMLPreElement); |
eseidel | a781b6a | 2006-05-15 21:57:01 +0000 | [diff] [blame] | 31 | public: |
weinig@apple.com | 02f433a | 2015-01-06 22:32:48 +0000 | [diff] [blame] | 32 | static Ref<HTMLPreElement> create(const QualifiedName&, Document&); |
darin@apple.com | 877ce5b | 2010-05-28 15:38:58 +0000 | [diff] [blame] | 33 | |
darin@apple.com | 877ce5b | 2010-05-28 15:38:58 +0000 | [diff] [blame] | 34 | private: |
weinig@apple.com | 6becaaf | 2013-09-14 21:33:13 +0000 | [diff] [blame] | 35 | HTMLPreElement(const QualifiedName&, Document&); |
eseidel | a781b6a | 2006-05-15 21:57:01 +0000 | [diff] [blame] | 36 | |
commit-queue@webkit.org | 188bacd | 2016-07-15 02:17:24 +0000 | [diff] [blame] | 37 | bool isPresentationAttribute(const QualifiedName&) const final; |
| 38 | void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStyleProperties&) final; |
eseidel | a781b6a | 2006-05-15 21:57:01 +0000 | [diff] [blame] | 39 | }; |
| 40 | |
weinig | ab5f09e | 2006-07-29 23:15:25 +0000 | [diff] [blame] | 41 | } // namespace WebCore |