Created attachment 184958 [details] screenshot http://code.google.com/p/chromium/issues/detail?id=172029 If small width/height is specified to an <input>, its content overflows. See the attachment
Created attachment 184960 [details] WIP
Comment on attachment 184960 [details] WIP Attachment 184960 [details] did not pass qt-ews (qt): Output: http://queues.webkit.org/results/16152549
Comment on attachment 184960 [details] WIP Attachment 184960 [details] did not pass qt-wk2-ews (qt): Output: http://queues.webkit.org/results/16159019
Comment on attachment 184960 [details] WIP Attachment 184960 [details] did not pass efl-ews (efl): Output: http://queues.webkit.org/results/16156543
Comment on attachment 184960 [details] WIP Attachment 184960 [details] did not pass cr-android-ews (chromium-android): Output: http://queues.webkit.org/results/16153594
Comment on attachment 184960 [details] WIP Attachment 184960 [details] did not pass win-ews (win): Output: http://queues.webkit.org/results/16155554
Comment on attachment 184960 [details] WIP Attachment 184960 [details] did not pass mac-wk2-ews (mac-wk2): Output: http://queues.webkit.org/results/16155552
Comment on attachment 184960 [details] WIP Attachment 184960 [details] did not pass mac-ews (mac): Output: http://queues.webkit.org/results/16155555
Comment on attachment 184960 [details] WIP Attachment 184960 [details] did not pass chromium-ews (chromium-xvfb): Output: http://queues.webkit.org/results/16149651 New failing tests: fast/forms/month/month-appearance-basic.html platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-with-scroll-bar.html fast/forms/time/time-appearance-basic.html fast/forms/datetimelocal/datetimelocal-appearance-basic.html fast/forms/week/week-appearance-basic.html
Created attachment 185110 [details] WIP 2
Created attachment 185198 [details] Patch
P1 because this is a release blocker for Chrome.
Created attachment 185207 [details] Patch 2
morrita-san: would you take a look?
Keishi, can you do informal review?
Comment on attachment 185207 [details] Patch 2 View in context: https://bugs.webkit.org/attachment.cgi?id=185207&action=review > Source/WebCore/html/HTMLInputElement.cpp:1981 > + RefPtr<RenderStyle> style = RenderStyle::clone(originalStyle.get()); We could get rid of this cloning if the style's direction and locale's direction is the same (in most cases it is I guess.)
Comment on attachment 185207 [details] Patch 2 View in context: https://bugs.webkit.org/attachment.cgi?id=185207&action=review >> Source/WebCore/html/HTMLInputElement.cpp:1981 >> + RefPtr<RenderStyle> style = RenderStyle::clone(originalStyle.get()); > > We could get rid of this cloning if the style's direction and locale's direction is the same (in most cases it is I guess.) That's right. I'll change so.
Committed r141195: <http://trac.webkit.org/changeset/141195>