OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <p>Given a float followed by a regular block with the same height as the float,
then a block B with |
| 3 a negative margin: Check that a line inside B doesn't overlap with the float
. There's an empty |
| 4 collapse-through block before B, so that our initial logical top estimate fa
ils and we have to |
| 5 relayout. When laying out again, we have to detect that the float that we fi
rst thought didn't |
| 6 affect the line now affects it.</p> |
| 7 <p>The word "PASS" should be seen below, to the right of a blue block.</p> |
| 8 <div style="color:blue;"> |
| 9 <div style="float:left; width:8em; height:8em; margin-right:1em; background:
blue;"></div> |
| 10 <div style="height:4em;"></div> |
| 11 PASS |
| 12 </div> |
OLD | NEW |