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

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

Issue 2623513005: Introduce Element::AttributeModificationParams (Closed)
Patch Set: Created 3 years, 11 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) 1997 Martin Jones (mjones@kde.org) 2 * Copyright (C) 1997 Martin Jones (mjones@kde.org)
3 * (C) 1997 Torben Weis (weis@kde.org) 3 * (C) 1997 Torben Weis (weis@kde.org)
4 * (C) 1998 Waldo Bastian (bastian@kde.org) 4 * (C) 1998 Waldo Bastian (bastian@kde.org)
5 * (C) 1999 Lars Knoll (knoll@kde.org) 5 * (C) 1999 Lars Knoll (knoll@kde.org)
6 * (C) 1999 Antti Koivisto (koivisto@kde.org) 6 * (C) 1999 Antti Koivisto (koivisto@kde.org)
7 * Copyright (C) 2003, 2004, 2005, 2006, 2008 Apple Inc. All rights reserved. 7 * Copyright (C) 2003, 2004, 2005, 2006, 2008 Apple Inc. All rights reserved.
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 70
71 const StylePropertySet* additionalCellStyle(); 71 const StylePropertySet* additionalCellStyle();
72 const StylePropertySet* additionalGroupStyle(bool rows); 72 const StylePropertySet* additionalGroupStyle(bool rows);
73 73
74 DECLARE_VIRTUAL_TRACE(); 74 DECLARE_VIRTUAL_TRACE();
75 75
76 private: 76 private:
77 explicit HTMLTableElement(Document&); 77 explicit HTMLTableElement(Document&);
78 ~HTMLTableElement(); 78 ~HTMLTableElement();
79 79
80 void parseAttribute(const QualifiedName&, 80 void parseAttribute(const AttributeModificationParams&) override;
81 const AtomicString&,
82 const AtomicString&) override;
83 bool isPresentationAttribute(const QualifiedName&) const override; 81 bool isPresentationAttribute(const QualifiedName&) const override;
84 void collectStyleForPresentationAttribute(const QualifiedName&, 82 void collectStyleForPresentationAttribute(const QualifiedName&,
85 const AtomicString&, 83 const AtomicString&,
86 MutableStylePropertySet*) override; 84 MutableStylePropertySet*) override;
87 bool isURLAttribute(const Attribute&) const override; 85 bool isURLAttribute(const Attribute&) const override;
88 bool hasLegalLinkAttribute(const QualifiedName&) const override; 86 bool hasLegalLinkAttribute(const QualifiedName&) const override;
89 const QualifiedName& subResourceAttributeName() const override; 87 const QualifiedName& subResourceAttributeName() const override;
90 88
91 // Used to obtain either a solid or outset border decl and to deal with the 89 // Used to obtain either a solid or outset border decl and to deal with the
92 // frame and rules attributes. 90 // frame and rules attributes.
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 // otherwise). 128 // otherwise).
131 TableRules m_rulesAttr; 129 TableRules m_rulesAttr;
132 130
133 unsigned short m_padding; 131 unsigned short m_padding;
134 Member<StylePropertySet> m_sharedCellStyle; 132 Member<StylePropertySet> m_sharedCellStyle;
135 }; 133 };
136 134
137 } // namespace blink 135 } // namespace blink
138 136
139 #endif // HTMLTableElement_h 137 #endif // HTMLTableElement_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLTableColElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLTableElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698