Home
last modified time | relevance | path

Searched refs:shadowTreeElement (Results 1 – 18 of 18) sorted by relevance

/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/svg/
H A DSVGUseElement.cpp273 SVGElement* shadowTreeElement = targetInstance->shadowTreeElement(); in updateContainerSize() local
274 ASSERT(shadowTreeElement); in updateContainerSize()
321 SVGElement* shadowTreeElement = targetInstance->shadowTreeElement(); in updateContainerOffset() local
322 ASSERT(shadowTreeElement); in updateContainerOffset()
399 SVGElement* shadowTreeElement = targetInstance->shadowTreeElement(); in dumpInstanceTree() local
400 ASSERT(shadowTreeElement); in dumpInstanceTree()
601 if (!m_targetElementInstance->shadowTreeElement()) { in buildShadowAndInstanceTree()
965 if (SVGElement* shadowTreeElement = target->shadowTreeElement()) { in transferEventListenersToShadowTree() local
1011 ASSERT(!targetInstance->shadowTreeElement()); in associateInstancesWithShadowTreeElements()
1045 if (!instance->shadowTreeElement()) in instanceForShadowTreeElement()
[all …]
H A DSVGAnimateTransformElement.cpp200 SVGElement* shadowTreeElement = (*it)->shadowTreeElement(); in applyResultsToTarget() local
201 ASSERT(shadowTreeElement); in applyResultsToTarget()
202 if (shadowTreeElement->isStyledTransformable()) in applyResultsToTarget()
203 …static_cast<SVGStyledTransformableElement*>(shadowTreeElement)->setTransformBaseValue(*transformLi… in applyResultsToTarget()
204 else if (shadowTreeElement->hasTagName(SVGNames::textTag)) in applyResultsToTarget()
205 static_cast<SVGTextElement*>(shadowTreeElement)->setTransformBaseValue(*transformList); in applyResultsToTarget()
206 …else if (shadowTreeElement->hasTagName(SVGNames::linearGradientTag) || shadowTreeElement->hasTagNa… in applyResultsToTarget()
207 …static_cast<SVGGradientElement*>(shadowTreeElement)->setGradientTransformBaseValue(*transformList); in applyResultsToTarget()
209 if (RenderObject* renderer = shadowTreeElement->renderer()) { in applyResultsToTarget()
H A DSVGAnimateMotionElement.cpp237 SVGElement* shadowTreeElement = (*it)->shadowTreeElement(); in applyResultsToTarget() local
238 ASSERT(shadowTreeElement); in applyResultsToTarget()
239 AffineTransform* transform = shadowTreeElement->supplementalTransform(); in applyResultsToTarget()
243 if (RenderObject* renderer = shadowTreeElement->renderer()) { in applyResultsToTarget()
H A DSVGAnimationElement.cpp339 SVGElement* shadowTreeElement = (*it)->shadowTreeElement(); in setTargetAttributeAnimatedValue() local
340 if (!shadowTreeElement) in setTargetAttributeAnimatedValue()
343 shadowTreeElement->style()->setProperty(attributeName.localName(), value, "", ec); in setTargetAttributeAnimatedValue()
345 shadowTreeElement->setAttribute(attributeName, value, ec); in setTargetAttributeAnimatedValue()
H A DSVGElementInstance.h61 SVGElement* shadowTreeElement() const { return m_shadowTreeElement.get(); } in shadowTreeElement() function
132 virtual Node* toNode() { return shadowTreeElement(); } in toNode()
H A DSVGElementInstance.cpp145 SVGElement* element = shadowTreeElement(); in dispatchEvent()
/dports/www/kf5-khtml/khtml-5.89.0/src/svg/
H A DSVGAnimateTransformElement.cpp183 SVGElement *shadowTreeElement = (*it)->shadowTreeElement(); in applyResultsToTarget() local
184 ASSERT(shadowTreeElement); in applyResultsToTarget()
185 if (shadowTreeElement->isStyledTransformable()) { in applyResultsToTarget()
186 …static_cast<SVGStyledTransformableElement *>(shadowTreeElement)->setTransform(transformList.get()); in applyResultsToTarget()
187 } else if (shadowTreeElement->hasTagName(SVGNames::textTag)) { in applyResultsToTarget()
188 static_cast<SVGTextElement *>(shadowTreeElement)->setTransform(transformList.get()); in applyResultsToTarget()
190 if (shadowTreeElement->renderer()) { in applyResultsToTarget()
191 shadowTreeElement->renderer()->setNeedsLayout(true); in applyResultsToTarget()
H A DSVGAnimateMotionElement.cpp240 SVGElement *shadowTreeElement = (*it)->shadowTreeElement(); in applyResultsToTarget() local
241 ASSERT(shadowTreeElement); in applyResultsToTarget()
242 AffineTransform *transform = shadowTreeElement->supplementalTransform(); in applyResultsToTarget()
245 if (shadowTreeElement->renderer()) { in applyResultsToTarget()
246 shadowTreeElement->renderer()->setNeedsLayout(true); in applyResultsToTarget()
H A DSVGAnimationElement.cpp347 SVGElement *shadowTreeElement = (*it)->shadowTreeElement(); in setTargetAttributeAnimatedValue() local
348 ASSERT(shadowTreeElement); in setTargetAttributeAnimatedValue()
350 shadowTreeElement->style()->setProperty(attributeName, value, "", ec); in setTargetAttributeAnimatedValue()
352 shadowTreeElement->setAttribute(attributeName, value, ec); in setTargetAttributeAnimatedValue()
H A DSVGElementInstance.h59 SVGElement *shadowTreeElement() const;
H A DSVGUseElement.cpp821 ASSERT(!targetInstance->shadowTreeElement()); in associateInstancesWithShadowTreeElements()
845 ASSERT(instance->shadowTreeElement()); in instanceForShadowTreeElement()
847 if (element == instance->shadowTreeElement()) { in instanceForShadowTreeElement()
H A DSVGElementInstance.cpp105 SVGElement *SVGElementInstance::shadowTreeElement() const in shadowTreeElement() function in WebCore::SVGElementInstance
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/dom/
H A DNode.cpp2688 ASSERT((*it)->shadowTreeElement()); in addEventListener()
2692 …bool result = tryAddEventListener((*it)->shadowTreeElement(), eventType, listenerForCurrentShadowT… in addEventListener()
2739 SVGElement* shadowTreeElement = (*it)->shadowTreeElement(); in removeEventListener()
2740 ASSERT(shadowTreeElement); in removeEventListener()
2742 if (tryRemoveEventListener(shadowTreeElement, eventType, listener, useCapture)) in removeEventListener()
2754 EventTargetData* data = shadowTreeElement->eventTargetData(); in removeEventListener()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/page/
H A DEventHandler.cpp1880 Node* shadowTreeElement = referenceNode->shadowTreeRootNode(); in instanceAssociatedWithShadowTreeElement() local
1881 if (!shadowTreeElement) in instanceAssociatedWithShadowTreeElement()
1884 Element* shadowTreeParentElement = shadowTreeElement->shadowHost(); in instanceAssociatedWithShadowTreeElement()
1929 SVGElement* shadowTreeElement = instance->shadowTreeElement(); in updateMouseEventTargetNode() local
1930 if (!shadowTreeElement->inDocument() || m_lastNodeUnderMouse == shadowTreeElement) in updateMouseEventTargetNode()
1933 m_lastNodeUnderMouse = shadowTreeElement; in updateMouseEventTargetNode()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/
H A DChangeLog-2011-02-1636519 setTargetAttributeAnimatedValue should check for a null shadowTreeElement.
36523 shadowTreeElement. We should check for that before setting attributes.
38074 (WebCore::SVGElementInstance::shadowTreeElement):
H A DChangeLog-2007-10-1459640 (WebCore::SVGElementInstance::shadowTreeElement):
H A DChangeLog-2009-06-1680219 (WebCore::SVGElementInstance::shadowTreeElement):
H A DChangeLog-2010-01-296635 …es anymore because of event listener changes, instead keep correspondingElement & shadowTreeElement