Title: [131433] trunk/Source/WebCore
Revision
131433
Author
tk...@chromium.org
Date
2012-10-16 02:30:34 -0700 (Tue, 16 Oct 2012)

Log Message

Fix some appearance glitches of multiple fields input elements
https://bugs.webkit.org/show_bug.cgi?id=99412

A follow-up change for r131421.

* css/themeWin.css:
(input[type="text"]): Don't reset paddings for date/time types.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (131432 => 131433)


--- trunk/Source/WebCore/ChangeLog	2012-10-16 09:28:06 UTC (rev 131432)
+++ trunk/Source/WebCore/ChangeLog	2012-10-16 09:30:34 UTC (rev 131433)
@@ -1,3 +1,13 @@
+2012-10-16  Kent Tamura  <tk...@chromium.org>
+
+        Fix some appearance glitches of multiple fields input elements
+        https://bugs.webkit.org/show_bug.cgi?id=99412
+
+        A follow-up change for r131421.
+
+        * css/themeWin.css:
+        (input[type="text"]): Don't reset paddings for date/time types.
+
 2012-10-16  Kenichi Ishibashi  <ba...@chromium.org>
 
         hb_face_t instances should not depend on FontPlatformData

Modified: trunk/Source/WebCore/css/themeWin.css (131432 => 131433)


--- trunk/Source/WebCore/css/themeWin.css	2012-10-16 09:28:06 UTC (rev 131432)
+++ trunk/Source/WebCore/css/themeWin.css	2012-10-16 09:30:34 UTC (rev 131433)
@@ -34,20 +34,20 @@
 
 input:not([type]), 
 input[type="color"],
-input[type="date"],
-input[type="datetime"],
-input[type="datetime-local"],
 input[type="email"],
-input[type="month"],
 input[type="number"],
 input[type="password"],
 input[type="tel"],
-input[type="text"],
 #if !defined(ENABLE_INPUT_MULTIPLE_FIELDS_UI) || !ENABLE_INPUT_MULTIPLE_FIELDS_UI
+input[type="date"],
+input[type="datetime"],
+input[type="datetime-local"],
+input[type="month"],
 input[type="time"],
+input[type="week"],
 #endif
 input[type="url"],
-input[type="week"] {
+input[type="text"] {
     padding:1px 0;
 }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to