Changeset 86862 in webkit
- Timestamp:
- May 19, 2011, 11:39:59 AM (14 years ago)
- Location:
- branches/chromium/742
- Files:
-
- 1 edited
- 2 copied
-
LayoutTests/fast/block/float/float-not-removed-crash-expected.txt (copied) (copied from trunk/LayoutTests/fast/block/float/float-not-removed-crash-expected.txt )
-
LayoutTests/fast/block/float/float-not-removed-crash.html (copied) (copied from trunk/LayoutTests/fast/block/float/float-not-removed-crash.html )
-
Source/WebCore/rendering/RenderBox.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/chromium/742/Source/WebCore/rendering/RenderBox.cpp
r84283 r86862 224 224 if (curr->isRenderBlock()) { 225 225 RenderBlock* currBlock = toRenderBlock(curr); 226 if ( currBlock->containsFloat(this))226 if (!parentBlock || currBlock->containsFloat(this)) 227 227 parentBlock = currBlock; 228 228 }
Note:
See TracChangeset
for help on using the changeset viewer.