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

Side by Side Diff: Source/core/svg/SVGTextPositioningElement.cpp

Issue 669153002: Relocate markForLayoutAndParentResourceInvalidation (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Drop boundsChanged. Created 6 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/svg/SVGTextPathElement.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, 2008 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008 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,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details. 13 * Library General Public License for more details.
14 * 14 *
15 * You should have received a copy of the GNU Library General Public License 15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to 16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA. 18 * Boston, MA 02110-1301, USA.
19 */ 19 */
20 20
21 #include "config.h" 21 #include "config.h"
22 22
23 #include "core/svg/SVGTextPositioningElement.h" 23 #include "core/svg/SVGTextPositioningElement.h"
24 24
25 #include "core/SVGNames.h" 25 #include "core/SVGNames.h"
26 #include "core/rendering/svg/RenderSVGResource.h"
27 #include "core/rendering/svg/RenderSVGText.h" 26 #include "core/rendering/svg/RenderSVGText.h"
28 #include "core/svg/SVGLengthList.h" 27 #include "core/svg/SVGLengthList.h"
29 #include "core/svg/SVGNumberList.h" 28 #include "core/svg/SVGNumberList.h"
30 29
31 namespace blink { 30 namespace blink {
32 31
33 SVGTextPositioningElement::SVGTextPositioningElement(const QualifiedName& tagNam e, Document& document) 32 SVGTextPositioningElement::SVGTextPositioningElement(const QualifiedName& tagNam e, Document& document)
34 : SVGTextContentElement(tagName, document) 33 : SVGTextContentElement(tagName, document)
35 , m_x(SVGAnimatedLengthList::create(this, SVGNames::xAttr, SVGLengthList::cr eate(LengthModeWidth))) 34 , m_x(SVGAnimatedLengthList::create(this, SVGNames::xAttr, SVGLengthList::cr eate(LengthModeWidth)))
36 , m_y(SVGAnimatedLengthList::create(this, SVGNames::yAttr, SVGLengthList::cr eate(LengthModeHeight))) 35 , m_y(SVGAnimatedLengthList::create(this, SVGNames::yAttr, SVGLengthList::cr eate(LengthModeHeight)))
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 updateRelativeLengthsInformation(); 80 updateRelativeLengthsInformation();
82 81
83 RenderObject* renderer = this->renderer(); 82 RenderObject* renderer = this->renderer();
84 if (!renderer) 83 if (!renderer)
85 return; 84 return;
86 85
87 ASSERT(updateRelativeLengths || attrName == SVGNames::rotateAttr); 86 ASSERT(updateRelativeLengths || attrName == SVGNames::rotateAttr);
88 87
89 if (RenderSVGText* textRenderer = RenderSVGText::locateRenderSVGTextAncestor (renderer)) 88 if (RenderSVGText* textRenderer = RenderSVGText::locateRenderSVGTextAncestor (renderer))
90 textRenderer->setNeedsPositioningValuesUpdate(); 89 textRenderer->setNeedsPositioningValuesUpdate();
91 RenderSVGResource::markForLayoutAndParentResourceInvalidation(renderer); 90 markForLayoutAndParentResourceInvalidation(renderer);
92 } 91 }
93 92
94 SVGTextPositioningElement* SVGTextPositioningElement::elementFromRenderer(Render Object* renderer) 93 SVGTextPositioningElement* SVGTextPositioningElement::elementFromRenderer(Render Object* renderer)
95 { 94 {
96 if (!renderer) 95 if (!renderer)
97 return 0; 96 return 0;
98 97
99 if (!renderer->isSVGText() && !renderer->isSVGInline()) 98 if (!renderer->isSVGText() && !renderer->isSVGInline())
100 return 0; 99 return 0;
101 100
102 Node* node = renderer->node(); 101 Node* node = renderer->node();
103 ASSERT(node); 102 ASSERT(node);
104 ASSERT(node->isSVGElement()); 103 ASSERT(node->isSVGElement());
105 104
106 return isSVGTextPositioningElement(*node) ? toSVGTextPositioningElement(node ) : 0; 105 return isSVGTextPositioningElement(*node) ? toSVGTextPositioningElement(node ) : 0;
107 } 106 }
108 107
109 } 108 }
OLDNEW
« no previous file with comments | « Source/core/svg/SVGTextPathElement.cpp ('k') | Source/core/svg/SVGUseElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698