Changeset 25262 in webkit


Ignore:
Timestamp:
Aug 27, 2007 10:57:10 AM (17 years ago)
Author:
bdash
Message:

2007-08-27 Mitz Pettel <mitz@webkit.org>

Reviewed by Darin.

Test: fast/replaced/applet-disabled-positioned.html

  • html/HTMLAppletElement.cpp: (WebCore::HTMLAppletElement::createRenderer): Changed to call RenderObject::createObject(), which accounts for style.

2007-08-27 Mitz Pettel <mitz@webkit.org>

Reviewed by Darin.

  • fast/replaced/applet-disabled-positioned.html: Added.
  • platform/mac/fast/replaced: Added.
  • platform/mac/fast/replaced/applet-disabled-positioned-expected.checksum: Added.
  • platform/mac/fast/replaced/applet-disabled-positioned-expected.png: Added.
  • platform/mac/fast/replaced/applet-disabled-positioned-expected.txt: Added.
Location:
trunk
Files:
5 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r25255 r25262  
     12007-08-27  Mitz Pettel  <mitz@webkit.org>
     2
     3        Reviewed by Darin.
     4
     5        - test for http://bugs.webkit.org/show_bug.cgi?id=15091
     6          Crash in RenderBlock::skipWhitespace during layout <rdar://problem/5439631>
     7
     8        * fast/replaced/applet-disabled-positioned.html: Added.
     9        * platform/mac/fast/replaced: Added.
     10        * platform/mac/fast/replaced/applet-disabled-positioned-expected.checksum: Added.
     11        * platform/mac/fast/replaced/applet-disabled-positioned-expected.png: Added.
     12        * platform/mac/fast/replaced/applet-disabled-positioned-expected.txt: Added.
     13
    1142007-08-26  Antti Koivisto  <antti@apple.com>
    215
  • trunk/WebCore/ChangeLog

    r25255 r25262  
     12007-08-27  Mitz Pettel  <mitz@webkit.org>
     2
     3        Reviewed by Darin.
     4
     5        - fix http://bugs.webkit.org/show_bug.cgi?id=15091
     6          Crash in RenderBlock::skipWhitespace during layout <rdar://problem/5439631>
     7
     8        Test: fast/replaced/applet-disabled-positioned.html
     9
     10        * html/HTMLAppletElement.cpp:
     11        (WebCore::HTMLAppletElement::createRenderer): Changed to call
     12        RenderObject::createObject(), which accounts for style.
     13
    1142007-08-26  Antti Koivisto  <antti@apple.com>
    215
  • trunk/WebCore/html/HTMLAppletElement.cpp

    r25098 r25262  
    138138    }
    139139
    140     return new (document()->renderArena()) RenderInline(this);
     140    return RenderObject::createObject(this, style);
    141141}
    142142
Note: See TracChangeset for help on using the changeset viewer.