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 String CSSTransformValue::customSerializeResolvingVariables(const HashMap<AtomicString, String>& variables) const
84 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);
82 DEFINE_CSS_VALUE_TYPE_CASTS(CSSTransformValue, isTransformValue());

Completed in 449 milliseconds