Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / css / CSSGradientValue.h
index 70e3846..4a5f7c0 100644 (file)
@@ -65,6 +65,11 @@ public:
         return compareCSSValuePtr(m_color, other.m_color)
             && compareCSSValuePtr(m_position, other.m_position);
     }
+    bool isHint() const
+    {
+        ASSERT(m_color || m_position);
+        return !m_color;
+    }
 
     void trace(Visitor*);
 };