Changeset 142076 in webkit


Ignore:
Timestamp:
Feb 7, 2013 12:40:17 AM (11 years ago)
Author:
tkent@chromium.org
Message:

REGRESSION(r141195): INPUT_MULTIPLE_FIELDS_UI: Space in a placeholder string is removed
https://bugs.webkit.org/show_bug.cgi?id=109132

Reviewed by Hajime Morita.

<input type=date> should be shown in Japanese UI as:
[ 年 /月/日]
But it is shown wrongly since r141195:
[年 /月/日]

We should use white-space:pre.

No new tests. This change is not testable in WebKit because this
requires a Japanese-localized UI string of Chromium.

  • css/html.css:

(input::-webkit-datetime-edit-fields-wrapper):
Use white-space:pre instead of nowrap.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r142075 r142076  
     12013-02-06  Kent Tamura  <tkent@chromium.org>
     2
     3        REGRESSION(r141195): INPUT_MULTIPLE_FIELDS_UI: Space in a placeholder string is removed
     4        https://bugs.webkit.org/show_bug.cgi?id=109132
     5
     6        Reviewed by Hajime Morita.
     7
     8        <input  type=date> should be shown in Japanese UI as:
     9        [ 年 /月/日]
     10        But it is shown wrongly since r141195:
     11        [年 /月/日]
     12
     13        We should use white-space:pre.
     14
     15        No new tests. This change is not testable in WebKit because this
     16        requires a Japanese-localized UI string of Chromium.
     17
     18        * css/html.css:
     19        (input::-webkit-datetime-edit-fields-wrapper):
     20        Use white-space:pre instead of nowrap.
     21
    1222013-02-06  Kentaro Hara  <haraken@chromium.org>
    223
  • trunk/Source/WebCore/css/html.css

    r141866 r142076  
    558558    display: inline-block;
    559559    padding: 1px 0;
    560     white-space: nowrap;
     560    white-space: pre;
    561561}
    562562
Note: See TracChangeset for help on using the changeset viewer.