tizen beta release
[framework/web/webkit-efl.git] / Source / WebCore / css / FontFeatureValue.cpp
index ce684bf..62c3960 100755 (executable)
 namespace WebCore {
 
 FontFeatureValue::FontFeatureValue(const String& tag, int value)
-    : m_tag(tag)
+    : CSSValue(FontFeatureClass)
+    , m_tag(tag)
     , m_value(value)
 {
 }
 
-String FontFeatureValue::cssText() const
+String FontFeatureValue::customCssText() const
 {
     StringBuilder builder;
     builder.append("'");