HomeSort by relevance Sort by last modified time
    Searched refs:shadowTreeElement (Results 1 - 8 of 8) sorted by null

  /external/webkit/WebCore/svg/
SVGAnimateTransformElement.cpp 170 SVGElement* shadowTreeElement = (*it)->shadowTreeElement();
171 ASSERT(shadowTreeElement);
172 if (shadowTreeElement->isStyledTransformable())
173 static_cast<SVGStyledTransformableElement*>(shadowTreeElement)->setTransformBaseValue(transformList.get());
174 else if (shadowTreeElement->hasTagName(SVGNames::textTag))
175 static_cast<SVGTextElement*>(shadowTreeElement)->setTransformBaseValue(transformList.get());
176 if (shadowTreeElement->renderer())
177 shadowTreeElement->renderer()->setNeedsLayout(true);
SVGUseElement.cpp 218 SVGElement* shadowTreeElement = targetInstance->shadowTreeElement();
219 ASSERT(shadowTreeElement);
220 ASSERT(shadowTreeElement->hasTagName(SVGNames::svgTag));
231 shadowTreeElement->setAttribute(SVGNames::widthAttr, useElement->getAttribute(SVGNames::widthAttr));
232 else if (isSymbolTag && shadowTreeElement->hasAttribute(SVGNames::widthAttr))
233 shadowTreeElement->setAttribute(SVGNames::widthAttr, "100%");
236 shadowTreeElement->setAttribute(SVGNames::heightAttr, useElement->getAttribute(SVGNames::heightAttr));
237 else if (isSymbolTag && shadowTreeElement->hasAttribute(SVGNames::heightAttr))
238 shadowTreeElement->setAttribute(SVGNames::heightAttr, "100%")
    [all...]
SVGAnimateMotionElement.cpp 221 SVGElement* shadowTreeElement = (*it)->shadowTreeElement();
222 ASSERT(shadowTreeElement);
223 AffineTransform* transform = shadowTreeElement->supplementalTransform();
226 if (shadowTreeElement->renderer())
227 shadowTreeElement->renderer()->setNeedsLayout(true);
SVGElementInstance.h 59 SVGElement* shadowTreeElement() const { return m_shadowTreeElement.get(); }
124 virtual Node* toNode() { return shadowTreeElement(); }
SVGElementInstance.cpp 137 SVGElement* element = shadowTreeElement();
SVGAnimationElement.cpp 322 SVGElement* shadowTreeElement = (*it)->shadowTreeElement();
323 ASSERT(shadowTreeElement);
325 shadowTreeElement->style()->setProperty(attributeName, value, "", ec);
327 shadowTreeElement->setAttribute(attributeName, value, ec);
  /external/webkit/WebCore/dom/
Node.cpp     [all...]
  /external/webkit/WebCore/page/
EventHandler.cpp     [all...]

Completed in 652 milliseconds