Home | History | Annotate | Download | only in svg

Lines Matching defs:svgStyle

190     if (!style()->svgStyle().hasMarkers())
257 const SVGRenderStyle& svgStyle = style()->svgStyle();
258 if (svgStyle.shapeRendering() == SR_CRISPEDGES)
262 switch (svgStyle.paintOrderType(i)) {
267 if (svgStyle.hasVisibleStroke()) {
327 const SVGRenderStyle& svgStyle = style()->svgStyle();
328 WindRule fillRule = svgStyle.fillRule();
330 fillRule = svgStyle.clipRule();
332 || (hitRules.canHitStroke && (svgStyle.hasStroke() || !hitRules.requireStroke) && strokeContains(localPoint, hitRules.requireStroke))
333 || (hitRules.canHitFill && (svgStyle.hasFill() || !hitRules.requireFill) && fillContains(localPoint, hitRules.requireFill, fillRule)))
385 if (style()->svgStyle().hasStroke()) {
418 return style()->svgStyle().strokeWidth()->value(lengthContext);
423 const SVGRenderStyle& svgStyle = style()->svgStyle();
424 return svgStyle.strokeDashArray()->isEmpty()
425 && svgStyle.strokeMiterLimit() == SVGRenderStyle::initialStrokeMiterLimit()
426 && svgStyle.joinStyle() == SVGRenderStyle::initialJoinStyle()
427 && svgStyle.capStyle() == SVGRenderStyle::initialCapStyle();