Changeset 20857 in webkit


Ignore:
Timestamp:
Apr 11, 2007 9:45:48 PM (17 years ago)
Author:
bdash
Message:

2007-04-11 Mitz Pettel <mitz@webkit.org>

Reviewed by Dave Hyatt.

Test: fast/forms/menulist-option-wrap.html

  • css/html4.css: Added white-space declaration for select[size="0"] and select[size="1"]. Added border-radius declaration for select.

2007-04-11 Mitz Pettel <mitz@webkit.org>

Reviewed by Dave Hyatt.

  • fast/forms/menulist-option-wrap-expected.checksum: Added.
  • fast/forms/menulist-option-wrap-expected.png: Added.
  • fast/forms/menulist-option-wrap-expected.txt: Added.
  • fast/forms/menulist-option-wrap.html: Added.
  • fast/forms/select-empty-option-height-expected.checksum:
  • fast/forms/select-empty-option-height-expected.png:
Location:
trunk
Files:
4 added
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r20854 r20857  
     12007-04-11  Mitz Pettel  <mitz@webkit.org>
     2
     3        Reviewed by Dave Hyatt.
     4
     5        - test and updated results for http://bugs.webkit.org/show_bug.cgi?id=11362
     6          Native popup with size="1" wraps options
     7
     8        * fast/forms/menulist-option-wrap-expected.checksum: Added.
     9        * fast/forms/menulist-option-wrap-expected.png: Added.
     10        * fast/forms/menulist-option-wrap-expected.txt: Added.
     11        * fast/forms/menulist-option-wrap.html: Added.
     12        * fast/forms/select-empty-option-height-expected.checksum:
     13        * fast/forms/select-empty-option-height-expected.png:
     14
    1152007-04-11  Justin Garcia  <justin.garcia@apple.com>
    216
  • trunk/LayoutTests/fast/forms/select-empty-option-height-expected.checksum

    r19517 r20857  
    1 a419caebdf164460679f0216df5baf1d
     14db23aa4b2d435d59c02f03adbb2f5f4
  • trunk/WebCore/ChangeLog

    r20856 r20857  
     12007-04-11  Mitz Pettel  <mitz@webkit.org>
     2
     3        Reviewed by Dave Hyatt.
     4
     5        - fix http://bugs.webkit.org/show_bug.cgi?id=11362
     6          Native popup with size="1" wraps options
     7
     8        Test: fast/forms/menulist-option-wrap.html
     9
     10        * css/html4.css: Added white-space declaration for select[size="0"] and
     11        select[size="1"]. Added border-radius declaration for select.
     12
    1132007-04-11  MorganL  <morganl.webkit@yahoo.com>
    214
  • trunk/WebCore/css/html4.css

    r20739 r20857  
    449449    box-sizing: border-box;
    450450    -webkit-box-align: center;
     451    border: 1px solid;
     452    -webkit-border-radius: 5px;
     453    white-space: pre;
    451454    -webkit-rtl-ordering: logical;
    452455    color: black;
    453     border: 1px solid;
    454456    background-color: white;
    455     white-space: pre;
    456457    cursor: default;
    457458}
     
    461462select[size][multiple] {
    462463    -webkit-appearance: listbox;
     464    box-sizing: initial;
    463465    -webkit-box-align: start;
    464     box-sizing: initial;
    465466    border: 1px inset gray;
    466467    -webkit-border-radius: initial;
     
    473474    box-sizing: border-box;
    474475    -webkit-box-align: center;
    475     color: black;
    476476    border: 1px solid;
    477477    -webkit-border-radius: 5px;
    478     background-color: white;
     478    white-space: pre;
    479479}
    480480
Note: See TracChangeset for help on using the changeset viewer.