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

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFitToViewBox.h 56 m_viewBox->setBaseValueAsString(value, parseError);
57 if (m_viewBox->baseValue()->width() < 0.0f) {
59 m_viewBox->baseValue()->setInvalid();
61 if (m_viewBox->baseValue()->height() < 0.0f) {
63 m_viewBox->baseValue()->setInvalid();
74 bool hasEmptyViewBox() const { return m_viewBox->currentValue()->isValid() && m_viewBox->currentValue()->value().isEmpty(); }
77 SVGAnimatedRect* viewBox() const { return m_viewBox.get(); }
83 void clearViewBox() { m_viewBox = nullptr; }
87 RefPtr<SVGAnimatedRect> m_viewBox;
    [all...]
SVGFitToViewBox.cpp 37 : m_viewBox(SVGAnimatedRect::create(element, SVGNames::viewBoxAttr))
42 element->addToPropertyMap(m_viewBox);
68 ASSERT(m_viewBox);
69 m_viewBox->baseValue()->setValue(rect);
PatternAttributes.h 37 , m_viewBox()
59 FloatRect viewBox() const { return m_viewBox; }
92 m_viewBox = value;
143 FloatRect m_viewBox;

Completed in 372 milliseconds