Home | History | Annotate | Download | only in svg

Lines Matching refs:objectBoundingBox

96     // Spec: When the geometry of the applicable element has no width or height and objectBoundingBox is specified,
98 FloatRect objectBoundingBox = object->objectBoundingBox();
99 if (m_attributes.boundingBoxMode() && objectBoundingBox.isEmpty())
200 const FloatRect& objectBoundingBox,
206 return FloatRect(attributes.x().valueAsPercentage() * objectBoundingBox.width() + objectBoundingBox.x(),
207 attributes.y().valueAsPercentage() * objectBoundingBox.height() + objectBoundingBox.y(),
208 attributes.width().valueAsPercentage() * objectBoundingBox.width(),
209 attributes.height().valueAsPercentage() * objectBoundingBox.height());
226 FloatRect objectBoundingBox = renderer->objectBoundingBox();
227 patternBoundaries = calculatePatternBoundaries(attributes, objectBoundingBox, patternElement);
233 // Apply viewBox/objectBoundingBox transformations.
237 tileImageTransform.scale(objectBoundingBox.width(), objectBoundingBox.height());