Changeset 19626 in webkit


Ignore:
Timestamp:
Feb 14, 2007 11:02:36 AM (17 years ago)
Author:
antti
Message:

LayoutTests:

Reviewed by Maciej.

  • fast/forms/textfield-overflow-expected.checksum: Added.
  • fast/forms/textfield-overflow-expected.png: Added.
  • fast/forms/textfield-overflow-expected.txt: Added.
  • fast/forms/textfield-overflow.html: Added.

WebCore:

Reviewed by Maciej.



Set controlClip for non-search text controls.

  • rendering/RenderTextControl.h: (WebCore::RenderTextControl::hasControlClip):
Location:
trunk
Files:
4 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r19622 r19626  
     12007-02-14  Antti Koivisto  <antti@apple.com>
     2
     3        Reviewed by Maciej.
     4
     5        - test for http://bugs.webkit.org/show_bug.cgi?id=11974
     6        REGRESSION: Caret drawn over input when smaller than font size on initial focus
     7        <rdar://problem/4960258>
     8
     9        * fast/forms/textfield-overflow-expected.checksum: Added.
     10        * fast/forms/textfield-overflow-expected.png: Added.
     11        * fast/forms/textfield-overflow-expected.txt: Added.
     12        * fast/forms/textfield-overflow.html: Added.
     13
    1142007-02-14  Geoffrey Garen  <ggaren@apple.com>
    215
  • trunk/WebCore/ChangeLog

    r19621 r19626  
     12007-02-14  Antti Koivisto  <antti@apple.com>
     2
     3        Reviewed by Maciej.
     4       
     5        - fix http://bugs.webkit.org/show_bug.cgi?id=11974
     6        REGRESSION: Caret drawn over input when smaller than font size on initial focus
     7        <rdar://problem/4960258>
     8       
     9        Set controlClip for non-search text controls.
     10
     11        * rendering/RenderTextControl.h:
     12        (WebCore::RenderTextControl::hasControlClip):
     13
    1142007-02-14  Mitz Pettel  <mitz@webkit.org>
    215
  • trunk/WebCore/rendering/RenderTextControl.h

    r19336 r19626  
    5252    virtual void layout();
    5353    virtual bool avoidsFloats() const { return true; }
     54    virtual bool hasControlClip() const { return !m_innerBlock; }
    5455
    5556    virtual bool isEdited() const { return m_dirty; }
Note: See TracChangeset for help on using the changeset viewer.