[WK2]Fails to display the layout of message body field in Linkedin.com
authorSantosh <santosh.ma@samsung.com>
Thu, 23 Aug 2012 12:55:12 +0000 (18:25 +0530)
committerKwangYong Choi <ky0.choi@samsung.com>
Wed, 29 Aug 2012 01:46:42 +0000 (10:46 +0900)
[Version] N/A
[Project] N/A
[Title]  Fails to display the layout of
 message body field in Linkedin.com
[BinType] N/A
[Customer] N/A
[Issue#] Web TF WEB-1091 & WEB-1092
[Problem][WK2] textarea element is not
rendered properly
[Cause] mismatch with themetypes due
to datefield added in CSSValueKeyWords.in thus
getting wrong themestyle
[Solution] added the DateFieldPart
enum in Themetypes.h
[Developer] Santosh Mahto(santosh.ma)

Change-Id: I1119f868aec281116e4829fea1c5f8bbcb4dbf4b

Source/WebCore/css/CSSValueKeywords.in
Source/WebKit/efl/DefaultTheme/default.edc
Source/WebKit/efl/DefaultTheme/widget/datefield/datefield.edc [deleted file]
Source/WebKit/efl/DefaultTheme/widget/datefield/img_focused.png [deleted file]
Source/WebKit/efl/DefaultTheme/widget/datefield/img_hovered.png [deleted file]
Source/WebKit/efl/DefaultTheme/widget/datefield/img_normal.png [deleted file]

index c6d6692..b98c8d0 100644 (file)
@@ -667,9 +667,6 @@ searchfield-results-decoration
 searchfield-results-button
 searchfield-cancel-button
 textfield
-
-datefield
-
 relevancy-level-indicator
 continuous-capacity-level-indicator
 discrete-capacity-level-indicator
index 25af528..e8b6e8a 100644 (file)
@@ -51,9 +51,6 @@ collections {
 #include "widget/radio/radio.edc"
 #include "widget/check/check.edc"
 #include "widget/entry/entry.edc"
-/* #ifdef ENABLE_TIZEN_INPUT_TAG_SUPPORT */
-#include "widget/datefield/datefield.edc"
-/* #endif*/
 #include "widget/combo/combo.edc"
 #ifdef ENABLE_PROGRESS_TAG
 #include "widget/progressbar/progressbar.edc"
diff --git a/Source/WebKit/efl/DefaultTheme/widget/datefield/datefield.edc b/Source/WebKit/efl/DefaultTheme/widget/datefield/datefield.edc
deleted file mode 100755 (executable)
index ed847de..0000000
+++ /dev/null
@@ -1,170 +0,0 @@
-/*
-    Copyright (C) 2008,2009 INdT - Instituto Nokia de Tecnologia
-    Copyright (C) 2009,2010 ProFUSION embedded systems
-    Copyright (C) 2009,2010 Samsung Electronics
-
-    This file is free software; you can redistribute it and/or
-    modify it under the terms of the GNU Library General Public
-    License as published by the Free Software Foundation; either
-    version 2 of the License, or (at your option) any later version.
-
-    This file is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-    Library General Public License for more details.
-
-    You should have received a copy of the GNU Library General Public License
-    along with this library; see the file COPYING.LIB.  If not, write to
-    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
-    Boston, MA 02110-1301, USA.
-*/
-
-
-/* ENABLE(TIZEN_INPUT_TAG_SUPPORT) */
-   group {
-      name: "webkit/widget/datefield";
-
-      images {
-         image: "widget/datefield/img_normal.png" COMP;
-         image: "widget/datefield/img_focused.png" COMP;
-         image: "widget/datefield/img_hovered.png" COMP;
-      }
-
-      script {
-          public isEnabled;
-          public isPressed;
-          public isChecked;
-          public isFocused;
-          public isHovered;
-
-          public show() {
-              if (get_int(isEnabled) == 1) {
-                  set_state(PART:"datefield", "default", 0.0);
-                  if (get_int(isPressed) == 1)
-                      set_state(PART:"datefield", "pressed", 0.0);
-                  if (get_int(isFocused) == 1)
-                      set_state(PART:"datefield", "focused", 0.0);
-                  if (get_int(isHovered) == 1 && get_int(isFocused) == 0)
-                      set_state(PART:"datefield", "hovered", 0.0);
-              }
-              else
-                  set_state(PART:"datefield", "disabled", 0.0);
-          }
-
-      }
-
-      parts {
-         part {
-            name: "datefield";
-            type: IMAGE;
-            description {
-               state: "default" 0.0;
-               min: 14 14;
-               rel1 {
-                  relative: 0.0 0.0;
-                  offset: 0 0;
-               }
-               rel2 {
-                  relative: 1.0 1.0;
-                  offset: -1 -1;
-               }
-               image {
-                  normal: "widget/datefield/img_normal.png";
-                  border: 7 7 7 7;
-               }
-            }
-            description {
-               state: "disabled" 0.0;
-               inherit: "default" 0.0;
-               color: 255 255 255 150;
-            }
-            description {
-               state: "focused" 0.0;
-               inherit: "default" 0.0;
-               image {
-                  normal: "widget/datefield/img_focused.png";
-                  border: 7 7 7 7;
-               }
-            }
-            description {
-               state: "pressed" 0.0;
-               inherit: "focused" 0.0;
-            }
-            description {
-               state: "hovered" 0.0;
-               inherit: "focused" 0.0;
-               image {
-                  normal: "widget/datefield/img_hovered.png";
-                  border: 7 7 7 7;
-               }
-            }
-         }
-
-         part {
-            name: "text_confinement";
-            type: RECT;
-            description {
-               state: "default" 0.0;
-               color: 0 0 0 0;
-               rel1.offset: 4 6;   // <- 6 because of the blink cursor
-               rel2.offset: -4 -5; // <- due to the image
-            }
-         }
-      }
-
-      programs {
-         program {
-            name: "enabled";
-            signal: "enabled";
-            script {
-               set_int(isEnabled, 1);
-               show();
-            }
-         }
-         program {
-            name: "pressed";
-            signal: "pressed";
-            script {
-               set_int(isPressed, 1);
-               show();
-            }
-         }
-        program {
-            name: "checked";
-            signal: "checked";
-            script {
-               set_int(isChecked, 1);
-               show();
-            }
-         }
-         program {
-            name: "focused";
-            signal: "focused";
-            script {
-               set_int(isFocused, 1);
-               show();
-            }
-         }
-          program {
-            name: "hovered";
-            signal: "hovered";
-            script {
-               set_int(isHovered, 1);
-               show();
-            }
-         }
-        program {
-            name: "reset";
-            signal: "reset";
-            script {
-               set_int(isEnabled, 0);
-               set_int(isPressed, 0);
-               set_int(isChecked, 0);
-               set_int(isFocused, 0);
-               set_int(isHovered, 0);
-               show();
-            }
-         }
-      }
-   }
-/* #endif */
diff --git a/Source/WebKit/efl/DefaultTheme/widget/datefield/img_focused.png b/Source/WebKit/efl/DefaultTheme/widget/datefield/img_focused.png
deleted file mode 100755 (executable)
index 85dfb0b..0000000
Binary files a/Source/WebKit/efl/DefaultTheme/widget/datefield/img_focused.png and /dev/null differ
diff --git a/Source/WebKit/efl/DefaultTheme/widget/datefield/img_hovered.png b/Source/WebKit/efl/DefaultTheme/widget/datefield/img_hovered.png
deleted file mode 100755 (executable)
index 85dfb0b..0000000
Binary files a/Source/WebKit/efl/DefaultTheme/widget/datefield/img_hovered.png and /dev/null differ
diff --git a/Source/WebKit/efl/DefaultTheme/widget/datefield/img_normal.png b/Source/WebKit/efl/DefaultTheme/widget/datefield/img_normal.png
deleted file mode 100755 (executable)
index 3306f41..0000000
Binary files a/Source/WebKit/efl/DefaultTheme/widget/datefield/img_normal.png and /dev/null differ