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

Side by Side Diff: Source/core/rendering/svg/RenderSVGResourcePattern.cpp

Issue 412033004: Use Traversal<>::firstChild() instead of firstWithin() when iterating over children (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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/rendering/svg/RenderSVGResourceMasker.cpp ('k') | no next file » | 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) 2006 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2006 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) Research In Motion Limited 2010. All rights reserved. 3 * Copyright (C) Research In Motion Limited 2010. All rights reserved.
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 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 251
252 // Apply tile image transformations. 252 // Apply tile image transformations.
253 if (!tileImageTransform.isIdentity()) 253 if (!tileImageTransform.isIdentity())
254 tileImageContext->concatCTM(tileImageTransform); 254 tileImageContext->concatCTM(tileImageTransform);
255 255
256 AffineTransform contentTransformation; 256 AffineTransform contentTransformation;
257 if (attributes.patternContentUnits() == SVGUnitTypes::SVG_UNIT_TYPE_OBJECTBO UNDINGBOX) 257 if (attributes.patternContentUnits() == SVGUnitTypes::SVG_UNIT_TYPE_OBJECTBO UNDINGBOX)
258 contentTransformation = tileImageTransform; 258 contentTransformation = tileImageTransform;
259 259
260 // Draw the content into the ImageBuffer. 260 // Draw the content into the ImageBuffer.
261 for (Element* element = ElementTraversal::firstWithin(*attributes.patternCon tentElement()); element; element = ElementTraversal::nextSibling(*element)) { 261 for (Element* element = ElementTraversal::firstChild(*attributes.patternCont entElement()); element; element = ElementTraversal::nextSibling(*element)) {
262 if (!element->isSVGElement() || !element->renderer()) 262 if (!element->isSVGElement() || !element->renderer())
263 continue; 263 continue;
264 if (element->renderer()->needsLayout()) 264 if (element->renderer()->needsLayout())
265 return nullptr; 265 return nullptr;
266 SVGRenderingContext::renderSubtree(tileImage->context(), element->render er(), contentTransformation); 266 SVGRenderingContext::renderSubtree(tileImage->context(), element->render er(), contentTransformation);
267 } 267 }
268 268
269 return tileImage.release(); 269 return tileImage.release();
270 } 270 }
271 271
272 } 272 }
OLDNEW
« no previous file with comments | « Source/core/rendering/svg/RenderSVGResourceMasker.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698