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

  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSTransformValue.cpp 27 #include "core/css/CSSTransformValue.h"
61 static inline String transformValueToCssString(CSSTransformValue::TransformOperationType operation, const String& value)
63 if (operation != CSSTransformValue::UnknownTransformOperation) {
70 CSSTransformValue::CSSTransformValue(TransformOperationType op)
76 String CSSTransformValue::customCssText() const
81 String CSSTransformValue::customSerializeResolvingVariables(const HashMap<AtomicString, String>& variables) const
86 CSSTransformValue::CSSTransformValue(const CSSTransformValue& cloneFrom
    [all...]
CSSTransformValue.h 34 class CSSTransformValue : public CSSValueList {
62 static PassRefPtr<CSSTransformValue> create(TransformOperationType type)
64 return adoptRef(new CSSTransformValue(type));
68 bool equals(const CSSTransformValue& other) const { return m_type == other.m_type && CSSValueList::equals(other); }
73 PassRefPtr<CSSTransformValue> cloneForCSSOM() const;
76 CSSTransformValue(TransformOperationType);
77 CSSTransformValue(const CSSTransformValue& cloneFrom);

Completed in 300 milliseconds