--- /dev/null
+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x600
+ RenderBlock {HTML} at (0,0) size 800x600
+ RenderBody {BODY} at (8,8) size 784x584
+ RenderBlock {P} at (0,0) size 784x36
+ RenderText {#text} at (0,0) size 100x18
+ text run at (0,0) width 100: "Repaint test for "
+ RenderInline {I} at (0,0) size 767x36
+ RenderInline {A} at (0,0) size 301x18 [color=#0000EE]
+ RenderText {#text} at (100,0) size 301x18
+ text run at (100,0) width 301: "http://bugs.webkit.org/show_bug.cgi?id=15838"
+ RenderText {#text} at (401,0) size 767x36
+ text run at (401,0) width 366: " Incomplete repaint toggling \"How you know this person\""
+ text run at (0,18) width 83: "on Facebook"
+ RenderText {#text} at (83,18) size 4x18
+ text run at (83,18) width 4: "."
+ RenderBlock {DIV} at (0,52) size 784x262
+ RenderBlock (anonymous) at (0,0) size 784x90
+ RenderText {#text} at (0,0) size 40x18
+ text run at (0,0) width 40: "Word,"
+ RenderBR {BR} at (40,14) size 0x0
+ RenderText {#text} at (0,18) size 43x18
+ text run at (0,18) width 43: "words,"
+ RenderBR {BR} at (43,32) size 0x0
+ RenderText {#text} at (0,36) size 79x18
+ text run at (0,36) width 79: "more words."
+ RenderBR {BR} at (79,50) size 0x0
+ RenderText {#text} at (0,54) size 44x18
+ text run at (0,54) width 44: "I could"
+ RenderBR {BR} at (44,68) size 0x0
+ RenderText {#text} at (0,72) size 79x18
+ text run at (0,72) width 79: "write a book"
+ RenderBR {BR} at (79,86) size 0x0
+ RenderBlock {DIV} at (0,90) size 10x100 [bgcolor=#FFFF00]
+ RenderBlock (anonymous) at (0,190) size 784x72
+ RenderText {#text} at (0,0) size 109x18
+ text run at (0,0) width 109: "about all the stuff"
+ RenderBR {BR} at (109,14) size 0x0
+ RenderText {#text} at (0,18) size 67x18
+ text run at (0,18) width 67: "that comes"
+ RenderBR {BR} at (67,32) size 0x0
+ RenderText {#text} at (0,36) size 28x18
+ text run at (0,36) width 28: "after"
+ RenderBR {BR} at (28,50) size 0x0
+ RenderText {#text} at (0,54) size 62x18
+ text run at (0,54) width 62: "the break."
+2007-11-06 Dan Bernstein <mitz@apple.com>
+
+ Reviewed by Darin Adler.
+
+ - fix http://bugs.webkit.org/show_bug.cgi?id=15838
+ Incomplete repaint toggling "How you know this person" on Facebook
+
+ Test: fast/repaint/make-children-non-inline.html
+
+ * rendering/RenderBlock.cpp:
+ (WebCore::RenderBlock::makeChildrenNonInline): Repaint the block. This
+ is needed because the inline children may be repositioned as they move
+ into new anonymous blocks, but those blocks have no knowledge of where
+ their children used to be, so they cannot invalidate those areas.
+
2007-11-06 Alexey Proskuryakov <ap@webkit.org>
Reviewed by Darin.