Home
last modified time | relevance | path

Searched refs:isSVGElement (Results 1 – 25 of 59) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
DSharedStyleFinder.cpp112 …return element.isSVGElement() ? element.getAttribute(typeAttr) : element.fastGetAttribute(typeAttr… in typeAttributeValue()
136 if (element().isSVGElement()) { in sharingCandidateHasIdenticalStyleAffectingAttributes()
180 if (candidate.isSVGElement() && toSVGElement(candidate).animatedSMILStyleProperties()) in canShareStyleWithElement()
230 if (parent->isSVGElement() && toSVGElement(parent)->animatedSMILStyleProperties()) in canShareStyleWithElement()
DStyleResolverState.h133 bool useSVGZoomRules() const { return element() && element()->isSVGElement(); } in useSVGZoomRules()
/external/chromium_org/third_party/WebKit/Source/core/events/
DEventPath.cpp56 if (!referenceNode->isSVGElement() || !referenceNode->isInShadowTree()) in eventTargetRespectingTargetRules()
227 bool isSVGElement = at(0).node()->isSVGElement(); in calculateAdjustedTargets() local
234 } else if (*lastTreeScope != currentTreeScope && !isSVGElement) { in calculateAdjustedTargets()
DEventContext.h99 …return target && target->toNode() && !target->toNode()->isSVGElement() && !target->toNode()->treeS… in isUnreachableNode()
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
DRenderSVGResourceClipper.cpp99 if (!childNode->isSVGElement() || !toSVGElement(childNode)->isSVGGraphicsElement()) in tryPathOnlyClipping()
164 if (!target->node()->isSVGElement() in applyClippingToContext()
273 if (!childNode->isSVGElement() || !renderer) in asDisplayList()
313 if (!childNode->isSVGElement() || !renderer) in calculateClipContentRepaintRect()
343 if (!childNode->isSVGElement() || !renderer) in hitTestClipContent()
DReferenceFilterBuilder.cpp138 if (!filter->isSVGElement() || !filter->hasTagName(SVGNames::filterTag)) in build()
154 if (!node->isSVGElement()) in build()
DRenderSVGResourceMasker.cpp139 if (!childNode->isSVGElement() || !renderer) in asDisplayList()
155 if (!childNode->isSVGElement() || !renderer) in calculateMaskContentRepaintRect()
DSVGResourcesCache.cpp118 return renderer->node() && renderer->node()->isSVGElement() && !renderer->isSVGInlineText(); in rendererCanHaveResources()
125 ASSERT(renderer->node()->isSVGElement()); in clientStyleChanged()
DSVGRenderSupport.cpp228 … if (SVGElement* element = child->node()->isSVGElement() ? toSVGElement(child->node()) : 0) { in layoutChildren()
354 ASSERT(object->node()->isSVGElement()); in applyStrokeStyleToContext()
383 ASSERT(object->node()->isSVGElement()); in applyStrokeStyleToStrokeData()
/external/chromium_org/third_party/WebKit/Source/core/svg/
DSVGUseElement.cpp335 if (!node->isSVGElement()) in isDisallowedElement()
418 if (target->isSVGElement()) { in buildPendingResource()
549 if (n->isSVGElement() && toSVGElement(n)->isSVGGraphicsElement()) { in toClipPath()
569 if (n->isSVGElement() && isDirectReference(n)) in rendererClipChild()
609 if (node->isSVGElement()) in buildInstanceTree()
641 if (targetElement && targetElement->isSVGElement()) in hasCycleUseReferencing()
715 if (targetElement && targetElement->isSVGElement()) in expandUseElementsInShadowTree()
729 ASSERT(newChild->isSVGElement()); in expandUseElementsInShadowTree()
837 if (target->isSVGElement()) in associateInstancesWithShadowTreeElements()
847 while (node && !node->isSVGElement()) in associateInstancesWithShadowTreeElements()
DSVGElement.cpp173 if (!parentOrShadowHostElement() || parentOrShadowHostElement()->isSVGElement()) in rendererIsNeeded()
213 …if (isInShadowTree() && parentOrShadowHostElement() && parentOrShadowHostElement()->isSVGElement()) in isOutermostSVGSVGElement()
217 return !parentNode()->isSVGElement(); in isOutermostSVGSVGElement()
269 if (titleElement->hasTagName(SVGNames::titleTag) && titleElement->isSVGElement()) in title()
362 if (rootParent->isSVGElement() && !parentNode()) { in removedFrom()
370 …ASSERT_WITH_SECURITY_IMPLICATION(!rootParent->isSVGElement() || !toSVGElement(rootParent)->m_eleme… in removedFrom()
479 …for (ContainerNode* currentNode = this; currentNode && currentNode->isSVGElement(); currentNode = … in updateRelativeLengthsInformation()
795 if (child->isSVGElement() && !toSVGElement(child)->haveLoadedRequiredResources()) in haveLoadedRequiredResources()
902 …return parentNode() && !parentNode()->isSVGElement() && hasTagName(SVGNames::svgTag) && Element::s… in shouldMoveToFlowThread()
914 …currentTarget = (parent && parent->isSVGElement()) ? static_pointer_cast<SVGElement>(parent) : Ref… in sendSVGLoadEventIfPossible()
[all …]
DSVGForeignObjectElement.cpp130 if (child.isSVGElement()) in childShouldCreateRenderer()
145 while (ancestor && ancestor->isSVGElement()) { in rendererIsNeeded()
DSVGAElement.cpp145 if (parentNode() && parentNode()->isSVGElement() && toSVGElement(parentNode())->isTextContent()) in createRenderer()
234 if (parentNode() && parentNode()->isSVGElement()) in childShouldCreateRenderer()
DSVGStopElement.h55 return node.isSVGElement() && toSVGElement(node).isGradientStop(); in isSVGStopElement()
DSVGSwitchElement.cpp59 if (!node->isSVGElement()) in childShouldCreateRenderer()
DSVGGElement.cpp100 return parentOrShadowHostElement() && parentOrShadowHostElement()->isSVGElement(); in rendererIsNeeded()
DSVGGraphicsElement.h81 return node.isSVGElement() && toSVGElement(node).isSVGGraphicsElement(); in isSVGGraphicsElement()
DSVGTextContentElement.h127 return node.isSVGElement() && toSVGElement(node).isTextContent();
DSVGMPathElement.cpp75 } else if (target->isSVGElement()) { in buildPendingResource()
DSVGTextPositioningElement.cpp161 ASSERT(node->isSVGElement()); in elementFromRenderer()
DSVGGradientElement.cpp144 SVGElement* element = n->isSVGElement() ? toSVGElement(n) : 0; in buildStops()
/external/chromium_org/third_party/WebKit/Source/core/dom/
DDocumentStyleSheetCollection.cpp77 …ment() && (n->hasTagName(linkTag) || n->hasTagName(styleTag))) || (n->isSVGElement() && n->hasTagN… in collectStyleSheetsFromCandidates()
100 } else if (n->isSVGElement() && n->hasTagName(SVGNames::styleTag)) { in collectStyleSheetsFromCandidates()
DVisitedLinkState.cpp45 ASSERT(element.isSVGElement()); in linkAttribute()
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/
DCustomElementRegistrationContext.cpp129 if (!element->isHTMLElement() && !element->isSVGElement()) in setTypeExtension()
/external/chromium_org/third_party/WebKit/Source/core/svg/graphics/filters/
DSVGFEImage.cpp88 if (!hrefElement || !hrefElement->isSVGElement()) in referencedRenderer()

123