Home
last modified time | relevance | path

Searched refs:svgElement (Results 1 – 9 of 9) sorted by relevance

/external/webkit/Source/WebCore/svg/
DSVGTests.cpp101 SVGElement* svgElement = const_cast<SVGElement*>(targetElement); in handleAttributeChange() local
102 ASSERT(svgElement); in handleAttributeChange()
103 bool valid = svgElement->isValid(); in handleAttributeChange()
104 if (valid && !svgElement->attached()) in handleAttributeChange()
105 svgElement->attach(); in handleAttributeChange()
106 if (!valid && svgElement->attached()) in handleAttributeChange()
107 svgElement->detach(); in handleAttributeChange()
DSVGFELightElement.cpp56 SVGFELightElement* SVGFELightElement::findLightElement(const SVGElement* svgElement) in findLightElement() argument
58 for (Node* node = svgElement->firstChild(); node; node = node->nextSibling()) { in findLightElement()
68 PassRefPtr<LightSource> SVGFELightElement::findLightSource(const SVGElement* svgElement) in findLightSource() argument
70 SVGFELightElement* lightNode = findLightElement(svgElement); in findLightSource()
DSVGUseElement.cpp900 RefPtr<SVGSVGElement> svgElement = SVGSVGElement::create(SVGNames::svgTag, document()); in expandSymbolElementsInShadowTree() local
903 svgElement->attributes()->setAttributes(*element->attributes()); in expandSymbolElementsInShadowTree()
909 svgElement->appendChild(newChild.release(), ec); in expandSymbolElementsInShadowTree()
918 if (subtreeContainsDisallowedElement(svgElement.get())) in expandSymbolElementsInShadowTree()
919 removeDisallowedElementsFromSubtree(svgElement.get()); in expandSymbolElementsInShadowTree()
921 RefPtr<Node> replacingElement(svgElement.get()); in expandSymbolElementsInShadowTree()
925 element->parentNode()->replaceChild(svgElement.release(), element, ec); in expandSymbolElementsInShadowTree()
/external/webkit/Source/WebCore/css/
DCSSCursorImageValue.cpp104 SVGElement* svgElement = static_cast<SVGElement*>(element); in updateIfSVGCursorIsUsed()
105 m_referencedElements.add(svgElement); in updateIfSVGCursorIsUsed()
106 svgElement->setCursorImageValue(this); in updateIfSVGCursorIsUsed()
107 cursorElement->addClient(svgElement); in updateIfSVGCursorIsUsed()
/external/webkit/Source/WebCore/rendering/svg/
DSVGRenderTreeAsText.cpp388 SVGElement* svgElement = static_cast<SVGElement*>(path.node()); in operator <<() local
390 if (svgElement->hasTagName(SVGNames::rectTag)) { in operator <<()
391 SVGRectElement* element = static_cast<SVGRectElement*>(svgElement); in operator <<()
396 } else if (svgElement->hasTagName(SVGNames::lineTag)) { in operator <<()
397 SVGLineElement* element = static_cast<SVGLineElement*>(svgElement); in operator <<()
402 } else if (svgElement->hasTagName(SVGNames::ellipseTag)) { in operator <<()
403 SVGEllipseElement* element = static_cast<SVGEllipseElement*>(svgElement); in operator <<()
408 } else if (svgElement->hasTagName(SVGNames::circleTag)) { in operator <<()
409 SVGCircleElement* element = static_cast<SVGCircleElement*>(svgElement); in operator <<()
413 …} else if (svgElement->hasTagName(SVGNames::polygonTag) || svgElement->hasTagName(SVGNames::polyli… in operator <<()
[all …]
DRenderSVGPath.cpp281 SVGElement* svgElement = static_cast<SVGElement*>(node()); in calculateMarkerBoundsIfNeeded() local
282 ASSERT(svgElement && svgElement->document()); in calculateMarkerBoundsIfNeeded()
283 if (!svgElement->isStyled()) in calculateMarkerBoundsIfNeeded()
286 SVGStyledElement* styledElement = static_cast<SVGStyledElement*>(svgElement); in calculateMarkerBoundsIfNeeded()
303 …teBoundaries(markerStart, markerMid, markerEnd, svgStyle->strokeWidth().value(svgElement), m_path); in calculateMarkerBoundsIfNeeded()
/external/webkit/Source/WebCore/svg/animation/
DSVGSMILElement.cpp148 static inline QualifiedName constructQualifiedName(const SVGElement* svgElement, const String& attr… in constructQualifiedName() argument
150 ASSERT(svgElement); in constructQualifiedName()
163 String namespaceURI = svgElement->lookupNamespaceURI(prefix); in constructQualifiedName()
/external/webkit/Source/WebCore/dom/
DElement.cpp516 const SVGElement* svgElement = static_cast<const SVGElement*>(this); in boundsInWindowSpace() local
518 if (svgElement->boundingBox(localRect)) in boundsInWindowSpace()
580 const SVGElement* svgElement = static_cast<const SVGElement*>(this); in getBoundingClientRect() local
582 if (svgElement->boundingBox(localRect)) in getBoundingClientRect()
/external/webkit/Source/WebCore/
DChangeLog-2009-06-1680269 svgElement.className.baseValue = "foo" does not work