Changeset 128032 in webkit


Ignore:
Timestamp:
Sep 10, 2012 1:57:27 AM (12 years ago)
Author:
commit-queue@webkit.org
Message:

[EFL] fast/forms/menulist-restrict-line-height.html is failing
https://bugs.webkit.org/show_bug.cgi?id=94878

Patch by Christophe Dumez <Christophe Dumez> on 2012-09-10
Reviewed by Kenneth Rohde Christiansen.

Source/WebCore:

<select> element's text is no longer clipped when a CSS
line-height is specified. The fix is the same as for
Mac port in r24886.

Test: fast/forms/menulist-restrict-line-height.html

  • platform/efl/RenderThemeEfl.cpp:

(WebCore::RenderThemeEfl::adjustMenuListStyle):

LayoutTests:

Generate baseline for fast/forms/menulist-restrict-line-height.html
and unskip the test now that <select> element's text is no longer
clipped when a CSS line-height is specified.

  • platform/efl/TestExpectations:
  • platform/efl/fast/forms/menulist-restrict-line-height-expected.png: Added.
  • platform/efl/fast/forms/menulist-restrict-line-height-expected.txt: Added.
Location:
trunk
Files:
2 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r128030 r128032  
     12012-09-10  Christophe Dumez  <christophe.dumez@intel.com>
     2
     3        [EFL] fast/forms/menulist-restrict-line-height.html is failing
     4        https://bugs.webkit.org/show_bug.cgi?id=94878
     5
     6        Reviewed by Kenneth Rohde Christiansen.
     7
     8        Generate baseline for fast/forms/menulist-restrict-line-height.html
     9        and unskip the test now that <select> element's text is no longer
     10        clipped when a CSS line-height is specified.
     11
     12        * platform/efl/TestExpectations:
     13        * platform/efl/fast/forms/menulist-restrict-line-height-expected.png: Added.
     14        * platform/efl/fast/forms/menulist-restrict-line-height-expected.txt: Added.
     15
    1162012-09-10  Christophe Dumez  <christophe.dumez@intel.com>
    217
  • trunk/LayoutTests/platform/efl/TestExpectations

    r128029 r128032  
    10241024BUGWK94877 : fast/forms/listbox-hit-test-zoomed.html = MISSING
    10251025
    1026 // The text in the popup button is clipped.
    1027 BUGWK94878 : fast/forms/menulist-restrict-line-height.html = MISSING
    1028 
    10291026// Cancel mark in search field is not working.
    10301027BUGWK94880 : fast/forms/search-cancel-button-style-sharing.html = MISSING
  • trunk/Source/WebCore/ChangeLog

    r128031 r128032  
     12012-09-10  Christophe Dumez  <christophe.dumez@intel.com>
     2
     3        [EFL] fast/forms/menulist-restrict-line-height.html is failing
     4        https://bugs.webkit.org/show_bug.cgi?id=94878
     5
     6        Reviewed by Kenneth Rohde Christiansen.
     7
     8        <select> element's text is no longer clipped when a CSS
     9        line-height is specified. The fix is the same as for
     10        Mac port in r24886.
     11
     12        Test: fast/forms/menulist-restrict-line-height.html
     13
     14        * platform/efl/RenderThemeEfl.cpp:
     15        (WebCore::RenderThemeEfl::adjustMenuListStyle):
     16
    1172012-09-10  Kevin Funk  <kevin.funk@kdab.com>
    218
  • trunk/Source/WebCore/platform/efl/RenderThemeEfl.cpp

    r128013 r128032  
    898898    style->resetBorder();
    899899    style->setWhiteSpace(PRE);
     900
     901    style->setLineHeight(RenderStyle::initialLineHeight());
    900902}
    901903
Note: See TracChangeset for help on using the changeset viewer.