| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |