Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(408)

Side by Side Diff: third_party/WebKit/Source/core/html/HTMLElement.h

Issue 1921823006: Fix parsing of <body link vlink alink> (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * Copyright (C) 2004-2007, 2009, 2014 Apple Inc. All rights reserved. 4 * Copyright (C) 2004-2007, 2009, 2014 Apple Inc. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 protected: 106 protected:
107 HTMLElement(const QualifiedName& tagName, Document&, ConstructionType); 107 HTMLElement(const QualifiedName& tagName, Document&, ConstructionType);
108 108
109 void addHTMLLengthToStyle(MutableStylePropertySet*, CSSPropertyID, const Str ing& value); 109 void addHTMLLengthToStyle(MutableStylePropertySet*, CSSPropertyID, const Str ing& value);
110 void addHTMLColorToStyle(MutableStylePropertySet*, CSSPropertyID, const Stri ng& color); 110 void addHTMLColorToStyle(MutableStylePropertySet*, CSSPropertyID, const Stri ng& color);
111 111
112 void applyAlignmentAttributeToStyle(const AtomicString&, MutableStylePropert ySet*); 112 void applyAlignmentAttributeToStyle(const AtomicString&, MutableStylePropert ySet*);
113 void applyBorderAttributeToStyle(const AtomicString&, MutableStylePropertySe t*); 113 void applyBorderAttributeToStyle(const AtomicString&, MutableStylePropertySe t*);
114 114
115 void parseAttribute(const QualifiedName&, const AtomicString&, const AtomicS tring&) override; 115 void parseAttribute(const QualifiedName&, const AtomicString&, const AtomicS tring&) override;
116 static bool parseColorWithLegacyRules(const String& attributeValue, Color& p arsedColor);
116 bool isPresentationAttribute(const QualifiedName&) const override; 117 bool isPresentationAttribute(const QualifiedName&) const override;
117 void collectStyleForPresentationAttribute(const QualifiedName&, const Atomic String&, MutableStylePropertySet*) override; 118 void collectStyleForPresentationAttribute(const QualifiedName&, const Atomic String&, MutableStylePropertySet*) override;
118 unsigned parseBorderWidthAttribute(const AtomicString&) const; 119 unsigned parseBorderWidthAttribute(const AtomicString&) const;
119 120
120 void childrenChanged(const ChildrenChange&) override; 121 void childrenChanged(const ChildrenChange&) override;
121 void calculateAndAdjustDirectionality(); 122 void calculateAndAdjustDirectionality();
122 123
123 private: 124 private:
124 String debugNodeName() const final; 125 String debugNodeName() const final;
125 String nodeName() const final; 126 String nodeName() const final;
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 template<typename T> inline bool is##thisType(const PassRefPtr<T>& node) { r eturn is##thisType(node.get()); } \ 181 template<typename T> inline bool is##thisType(const PassRefPtr<T>& node) { r eturn is##thisType(node.get()); } \
181 template<typename T> inline bool is##thisType(const RefPtr<T>& node) { retur n is##thisType(node.get()); } \ 182 template<typename T> inline bool is##thisType(const RefPtr<T>& node) { retur n is##thisType(node.get()); } \
182 template <> inline bool isElementOfType<const thisType>(const HTMLElement& e lement) { return is##thisType(element); } \ 183 template <> inline bool isElementOfType<const thisType>(const HTMLElement& e lement) { return is##thisType(element); } \
183 DEFINE_ELEMENT_TYPE_CASTS_WITH_FUNCTION(thisType) 184 DEFINE_ELEMENT_TYPE_CASTS_WITH_FUNCTION(thisType)
184 185
185 } // namespace blink 186 } // namespace blink
186 187
187 #include "core/HTMLElementTypeHelpers.h" 188 #include "core/HTMLElementTypeHelpers.h"
188 189
189 #endif // HTMLElement_h 190 #endif // HTMLElement_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLBodyElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698