| Index: Source/WebCore/rendering/RenderBlock.cpp | 
| =================================================================== | 
| --- Source/WebCore/rendering/RenderBlock.cpp	(revision 79910) | 
| +++ Source/WebCore/rendering/RenderBlock.cpp	(working copy) | 
| @@ -2568,6 +2568,19 @@ | 
| continuations->add(flow); | 
| } | 
|  | 
| +bool RenderBlock::paintsContinuationOutline(RenderInline* flow) | 
| +{ | 
| +    ContinuationOutlineTableMap* table = continuationOutlineTable(); | 
| +    if (table->isEmpty()) | 
| +        return false; | 
| + | 
| +    ListHashSet<RenderInline*>* continuations = table->get(this); | 
| +    if (!continuations) | 
| +        return false; | 
| + | 
| +    return continuations->contains(flow); | 
| +} | 
| + | 
| void RenderBlock::paintContinuationOutlines(PaintInfo& info, int tx, int ty) | 
| { | 
| ContinuationOutlineTableMap* table = continuationOutlineTable(); | 
|  |