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

Side by Side Diff: Source/core/svg/SVGUseElement.h

Issue 896773002: [svg2] Make 'x' and 'y' presentation attributes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 5 years, 10 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
« no previous file with comments | « Source/core/svg/SVGSVGElement.cpp ('k') | Source/core/svg/SVGUseElement.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann <zimmermann@kde .org> 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann <zimmermann@kde .org>
3 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org>
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 48
49 SVGAnimatedLength* x() const { return m_x.get(); } 49 SVGAnimatedLength* x() const { return m_x.get(); }
50 SVGAnimatedLength* y() const { return m_y.get(); } 50 SVGAnimatedLength* y() const { return m_y.get(); }
51 SVGAnimatedLength* width() const { return m_width.get(); } 51 SVGAnimatedLength* width() const { return m_width.get(); }
52 SVGAnimatedLength* height() const { return m_height.get(); } 52 SVGAnimatedLength* height() const { return m_height.get(); }
53 53
54 virtual void buildPendingResource() override; 54 virtual void buildPendingResource() override;
55 55
56 virtual void trace(Visitor*) override; 56 virtual void trace(Visitor*) override;
57 57
58 virtual bool isPresentationAttribute(const QualifiedName&) const override;
59 virtual void collectStyleForPresentationAttribute(const QualifiedName&, cons t AtomicString&, MutableStylePropertySet*) override;
60 virtual bool isPresentationAttributeWithSVGDOM(const QualifiedName&) const o verride;
61
58 private: 62 private:
59 explicit SVGUseElement(Document&); 63 explicit SVGUseElement(Document&);
60 64
61 virtual bool isStructurallyExternal() const override { return !hrefString(). isNull() && isExternalURIReference(hrefString(), document()); } 65 virtual bool isStructurallyExternal() const override { return !hrefString(). isNull() && isExternalURIReference(hrefString(), document()); }
62 66
63 virtual InsertionNotificationRequest insertedInto(ContainerNode*) override; 67 virtual InsertionNotificationRequest insertedInto(ContainerNode*) override;
64 virtual void removedFrom(ContainerNode*) override; 68 virtual void removedFrom(ContainerNode*) override;
65 69
66 bool isSupportedAttribute(const QualifiedName&); 70 bool isSupportedAttribute(const QualifiedName&);
67 virtual void parseAttribute(const QualifiedName&, const AtomicString&) overr ide; 71 virtual void parseAttribute(const QualifiedName&, const AtomicString&) overr ide;
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 bool m_haveFiredLoadEvent; 109 bool m_haveFiredLoadEvent;
106 bool m_needsShadowTreeRecreation; 110 bool m_needsShadowTreeRecreation;
107 RefPtrWillBeMember<SVGElement> m_targetElementInstance; 111 RefPtrWillBeMember<SVGElement> m_targetElementInstance;
108 ResourcePtr<DocumentResource> m_resource; 112 ResourcePtr<DocumentResource> m_resource;
109 Timer<SVGElement> m_svgLoadEventTimer; 113 Timer<SVGElement> m_svgLoadEventTimer;
110 }; 114 };
111 115
112 } // namespace blink 116 } // namespace blink
113 117
114 #endif // SVGUseElement_h 118 #endif // SVGUseElement_h
OLDNEW
« no previous file with comments | « Source/core/svg/SVGSVGElement.cpp ('k') | Source/core/svg/SVGUseElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698