HomeSort by relevance Sort by last modified time
    Searched defs:svg (Results 1 - 6 of 6) sorted by null

  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGViewportContainer.cpp 25 #if ENABLE(SVG)
50 SVGSVGElement* svg = static_cast<SVGSVGElement*>(element); local
53 m_viewport = FloatRect(svg->x().value(svg)
54 , svg->y().value(svg)
55 , svg->width().value(svg)
56 , svg->height().value(svg));
66 SVGSVGElement* svg = static_cast<SVGSVGElement*>(node()); local
    [all...]
RenderSVGRoot.cpp 25 #if ENABLE(SVG)
86 SVGSVGElement* svg = static_cast<SVGSVGElement*>(node());
87 return static_cast<int>(roundf(replacedWidth * svg->currentScale()));
97 SVGSVGElement* svg = static_cast<SVGSVGElement*>(node());
98 return static_cast<int>(roundf(replacedHeight * svg->currentScale()));
116 SVGSVGElement* svg = static_cast<SVGSVGElement*>(node()); local
117 m_isLayoutSizeChanged = svg->hasRelativeLengths() && oldSize != size();
175 // Convert from container offsets (html renderers) to a relative transform (svg renderers).
222 SVGSVGElement* svg = static_cast<SVGSVGElement*>(node()); local
224 if (!svg->hasSetContainerSize())
245 SVGSVGElement* svg = static_cast<SVGSVGElement*>(node()); local
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGLength.cpp 24 #if ENABLE(SVG)
317 // Take size from outermost <svg> element.
329 // Resolve value against nearest viewport element (common case: inner <svg> elements)
332 const SVGSVGElement* svg = static_cast<const SVGSVGElement*>(viewportElement); local
333 if (svg->hasAttribute(SVGNames::viewBoxAttr)) {
334 width = svg->viewBox().width();
335 height = svg->viewBox().height();
337 width = svg->width().value(svg);
338 height = svg->height().value(svg)
    [all...]
SVGStyledElement.cpp 23 #if ENABLE(SVG)
73 // According to spec, we should not return titles when hovering over root <svg> elements (those
76 const SVGSVGElement* svg = static_cast<const SVGSVGElement*>(this); local
77 if (svg->isOutermostSVG())
120 // http://www.w3.org/TR/SVG/extend.html#PrivateData
121 // Prevent anything other than SVG renderers from appearing in our render tree
122 // Spec: SVG allows inclusion of elements from foreign namespaces anywhere
123 // with the SVG content. In general, the SVG user agent will include the unknown
139 // This is a list of all base CSS and SVG CSS properties which are exposed as SVG XML attribute
    [all...]
  /external/webkit/Source/WebKit/qt/tests/qwebelement/
tst_qwebelement.cpp 153 "xmlns:svg=\"http://www.w3.org/2000/svg\">"
154 "<body><svg:svg id=\"foobar\" width=\"400px\" height=\"300px\">"
155 "</svg:svg></body></html>";
159 QWebElement svg = m_mainFrame->findFirstElement("svg"); local
160 QVERIFY(!svg.isNull());
162 QVERIFY(!svg.hasAttributeNS("http://www.w3.org/2000/svg", "foobar"))
178 QWebElement svg = m_mainFrame->findFirstElement("svg"); local
269 QWebElement svg = body.findAll("*#foobar").at(0); local
    [all...]
  /external/webkit/Source/WebCore/page/
FrameView.cpp 69 #if ENABLE(SVG)
564 #if ENABLE(SVG)
885 #if ENABLE(SVG)
1437 RefPtr<SVGSVGElement> svg = static_cast<SVGDocument*>(m_frame->document())->rootElement(); local
1447 RefPtr<SVGSVGElement> svg = static_cast<SVGSVGElement*>(element); local
    [all...]

Completed in 977 milliseconds