Fix input picker issue
[framework/web/webkit-efl.git] / Source / WebKit2 / Shared / EditorState.h
index 389e897..3248fa2 100755 (executable)
@@ -48,6 +48,9 @@ struct EditorState {
 #endif
 #if ENABLE(TIZEN_WEBKIT2_TEXT_SELECTION)
         , updateEditorRectOnly(false)
+        , underlineState(0)
+        , italicState(0)
+        , boldState(0)
 #endif
 #if PLATFORM(QT)
         , cursorPosition(0)
@@ -75,8 +78,12 @@ struct EditorState {
     WebCore::IntRect editorRect;
     bool updateEditorRectOnly;
 #if ENABLE(TIZEN_WEBKIT2_GET_TEXT_STYLE_FOR_SELECTION)
+    int underlineState;
+    int italicState;
+    int boldState;
     WTF::String bgColor;
     WTF::String color;
+    WTF::String fontSize;
 #endif
 #endif
 #if PLATFORM(QT)