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"
59 static inline String transformValueToCssString(CSSTransformValue::TransformOperationType operation, const String& value)
61 if (operation != CSSTransformValue::UnknownTransformOperation) {
68 CSSTransformValue::CSSTransformValue(TransformOperationType op)
74 String CSSTransformValue::customCSSText() const
79 CSSTransformValue::CSSTransformValue(const CSSTransformValue& cloneFrom)
85 PassRefPtrWillBeRawPtr<CSSTransformValue> CSSTransformValue::cloneForCSSOM() cons
    [all...]
CSSTransformValue.h 34 class CSSTransformValue : public CSSValueList {
62 static PassRefPtrWillBeRawPtr<CSSTransformValue> create(TransformOperationType type)
64 return adoptRefWillBeNoop(new CSSTransformValue(type));
68 bool equals(const CSSTransformValue& other) const { return m_type == other.m_type && CSSValueList::equals(other); }
72 PassRefPtrWillBeRawPtr<CSSTransformValue> cloneForCSSOM() const;
77 CSSTransformValue(TransformOperationType);
78 CSSTransformValue(const CSSTransformValue& cloneFrom);
83 DEFINE_CSS_VALUE_TYPE_CASTS(CSSTransformValue, isTransformValue());

Completed in 128 milliseconds