| Index: Source/WebCore/rendering/RenderBlock.cpp
 | 
| ===================================================================
 | 
| --- Source/WebCore/rendering/RenderBlock.cpp	(revision 109399)
 | 
| +++ Source/WebCore/rendering/RenderBlock.cpp	(working copy)
 | 
| @@ -434,6 +434,12 @@
 | 
|          if (!curr->isRenderBlock() || curr->isFloatingOrPositioned() || curr->isTableCell() || curr->isRoot() || curr->isRenderView() || curr->hasOverflowClip()
 | 
|              || curr->isInlineBlockOrInlineTable())
 | 
|              return 0;
 | 
| +
 | 
| +        // FIXME: Table manages its own table parts, most of which are RenderBoxes.
 | 
| +        // Multi-column code cannot handle splitting the flow in table. Disabling it
 | 
| +        // to prevent crashes.
 | 
| +        if (curr->isTable())
 | 
| +            return 0;
 | 
|          
 | 
|          RenderBlock* currBlock = toRenderBlock(curr);
 | 
|          if (!currBlock->createsAnonymousWrapper())
 | 
| 
 |