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

Side by Side Diff: third_party/WebKit/Source/core/svg/SVGSVGElement.h

Issue 1511523002: Align HTMLImageElement relevant mutations to spec (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix removal issue when a text node is between <source> and <img> Created 5 years 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) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Rob Buis <buis@kde.org>
4 * Copyright (C) 2014 Google, Inc. 4 * Copyright (C) 2014 Google, Inc.
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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 123
124 void parseAttribute(const QualifiedName&, const AtomicString&, const AtomicS tring&) override; 124 void parseAttribute(const QualifiedName&, const AtomicString&, const AtomicS tring&) override;
125 bool isPresentationAttribute(const QualifiedName&) const override; 125 bool isPresentationAttribute(const QualifiedName&) const override;
126 bool isPresentationAttributeWithSVGDOM(const QualifiedName&) const override; 126 bool isPresentationAttributeWithSVGDOM(const QualifiedName&) const override;
127 void collectStyleForPresentationAttribute(const QualifiedName&, const Atomic String&, MutableStylePropertySet*) override; 127 void collectStyleForPresentationAttribute(const QualifiedName&, const Atomic String&, MutableStylePropertySet*) override;
128 128
129 bool layoutObjectIsNeeded(const ComputedStyle&) override; 129 bool layoutObjectIsNeeded(const ComputedStyle&) override;
130 LayoutObject* createLayoutObject(const ComputedStyle&) override; 130 LayoutObject* createLayoutObject(const ComputedStyle&) override;
131 131
132 InsertionNotificationRequest insertedInto(ContainerNode*) override; 132 InsertionNotificationRequest insertedInto(ContainerNode*) override;
133 void removedFrom(ContainerNode*) override; 133 void removedFrom(ContainerNode* insertionPoint, Node* next) override;
134 134
135 void svgAttributeChanged(const QualifiedName&) override; 135 void svgAttributeChanged(const QualifiedName&) override;
136 136
137 bool selfHasRelativeLengths() const override; 137 bool selfHasRelativeLengths() const override;
138 138
139 void inheritViewAttributes(SVGViewElement*); 139 void inheritViewAttributes(SVGViewElement*);
140 140
141 void updateCurrentTranslate(); 141 void updateCurrentTranslate();
142 142
143 void finishParsingChildren() override; 143 void finishParsingChildren() override;
(...skipping 17 matching lines...) Expand all
161 RefPtrWillBeMember<SMILTimeContainer> m_timeContainer; 161 RefPtrWillBeMember<SMILTimeContainer> m_timeContainer;
162 RefPtrWillBeMember<SVGPoint> m_translation; 162 RefPtrWillBeMember<SVGPoint> m_translation;
163 RefPtrWillBeMember<SVGViewSpec> m_viewSpec; 163 RefPtrWillBeMember<SVGViewSpec> m_viewSpec;
164 164
165 friend class SVGCurrentTranslateTearOff; 165 friend class SVGCurrentTranslateTearOff;
166 }; 166 };
167 167
168 } // namespace blink 168 } // namespace blink
169 169
170 #endif // SVGSVGElement_h 170 #endif // SVGSVGElement_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698