+2006-03-18 Mitz Pettel <opendarwin.org@mitzpettel.com>
+
+ Reviewed by Hyatt.
+
+ - test for http://bugzilla.opendarwin.org/show_bug.cgi?id=6795
+ Slow image load causes render problem
+
+ * fast/block/float/vertical-move-relayout-expected.checksum: Added.
+ * fast/block/float/vertical-move-relayout-expected.png: Added.
+ * fast/block/float/vertical-move-relayout-expected.txt: Added.
+ * fast/block/float/vertical-move-relayout.html: Added.
+
2006-03-18 David Kilzer <ddkilzer@kilzer.net>
Reviewed by Darin.
--- /dev/null
+layer at (0,0) size 800x600
+ RenderCanvas 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 784x18
+ RenderText {TEXT} at (0,0) size 53x18
+ text run at (0,0) width 53: "Test for "
+ RenderInline {I} at (0,0) size 607x18
+ RenderInline {A} at (0,0) size 348x18 [color=#0000EE]
+ RenderText {TEXT} at (53,0) size 348x18
+ text run at (53,0) width 348: "http://bugzilla.opendarwin.org/show_bug.cgi?id=6795"
+ RenderText {TEXT} at (401,0) size 259x18
+ text run at (401,0) width 4: " "
+ text run at (405,0) width 255: "Slow image load causes render problem"
+ RenderText {TEXT} at (660,0) size 4x18
+ text run at (660,0) width 4: "."
+ RenderBlock {P} at (0,34) size 784x18
+ RenderText {TEXT} at (0,0) size 284x18
+ text run at (0,0) width 284: "There should be only one blue square below:"
+ RenderBlock {DIV} at (0,68) size 784x140
+ RenderBlock (anonymous) at (0,0) size 784x120
+ RenderBlock (floating) {DIV} at (0,0) size 100x100 [bgcolor=#87CEEB]
+ RenderBlock {DIV} at (100,0) size 50x120
+ RenderText {TEXT} at (0,0) size 0x0
+ RenderBlock {DIV} at (0,120) size 784x20
--- /dev/null
+<html>
+<head>
+ <style type="text/css">
+ #f {
+ float: left;
+ height: 100px;
+ width: 100px;
+ background: skyblue;
+ }
+ </style>
+</head>
+<body onload="document.body.offsetTop; document.getElementById('t').style.height = '120px'">
+ <p>
+ Test for <i><a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=6795">http://bugzilla.opendarwin.org/show_bug.cgi?id=6795</a>
+ Slow image load causes render problem</i>.
+ </p>
+ <p>
+ There should be only one blue square below:
+ </p>
+ <div>
+ <div id="f"></div>
+ <div id="t" style="width: 50px; display: inline-block;"></div>
+ <div style="height: 20px;"></div>
+ </div>
+ </div>
+</body>
+</html>
+2006-03-18 Mitz Pettel <opendarwin.org@mitzpettel.com>
+
+ Test: fast/block/float/vertical-move-relayout.html
+
+ Reviewed by Hyatt.
+
+ - fix http://bugzilla.opendarwin.org/show_bug.cgi?id=6795
+ Slow image load causes render problem
+
+ * rendering/RenderBlock.cpp:
+ (WebCore::RenderBlock::layoutBlockChildren): Call markAllDescendantsWithFloatsForLayout
+ when the child's vertical position changes.
+
2006-03-18 David Kilzer <ddkilzer@kilzer.net>
Reviewed by Darin.