Home
last modified time | relevance | path

Searched refs:m_firstX (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSGradientValue.cpp468 result.append(m_firstX->cssText()); in customCSSText()
504 if (m_firstX && m_firstY) { in customCSSText()
505 result.append(m_firstX->cssText()); in customCSSText()
508 } else if (m_firstX || m_firstY) { in customCSSText()
509 if (m_firstX) in customCSSText()
510 result.append(m_firstX->cssText()); in customCSSText()
537 …} else if ((m_firstX || m_firstY) && !(!m_firstX && m_firstY && m_firstY->getValueID() == CSSValue… in customCSSText()
539 if (m_firstX && m_firstY) { in customCSSText()
540 result.append(m_firstX->cssText()); in customCSSText()
543 } else if (m_firstX) in customCSSText()
[all …]
DCSSGradientValue.h67 void setFirstX(PassRefPtr<CSSPrimitiveValue> val) { m_firstX = val; } in setFirstX()
102 , m_firstX(other.m_firstX) in CSSGradientValue()
121 RefPtr<CSSPrimitiveValue> m_firstX; variable