| Index: Source/core/rendering/RenderFrameSet.cpp
|
| diff --git a/Source/core/rendering/RenderFrameSet.cpp b/Source/core/rendering/RenderFrameSet.cpp
|
| index 0126642ec1d8392e5c0a99c2a17c914d48fd3c08..a7b155e8ceaabbdeacf7c3939ba7388d78b8858f 100644
|
| --- a/Source/core/rendering/RenderFrameSet.cpp
|
| +++ b/Source/core/rendering/RenderFrameSet.cpp
|
| @@ -78,7 +78,7 @@ static Color borderFillColor()
|
|
|
| void RenderFrameSet::paintColumnBorder(const PaintInfo& paintInfo, const IntRect& borderRect)
|
| {
|
| - if (!paintInfo.rect.intersects(borderRect))
|
| + if (!paintInfo.rect().intersects(borderRect))
|
| return;
|
|
|
| // FIXME: We should do something clever when borders from distinct framesets meet at a join.
|
| @@ -97,7 +97,7 @@ void RenderFrameSet::paintColumnBorder(const PaintInfo& paintInfo, const IntRect
|
|
|
| void RenderFrameSet::paintRowBorder(const PaintInfo& paintInfo, const IntRect& borderRect)
|
| {
|
| - if (!paintInfo.rect.intersects(borderRect))
|
| + if (!paintInfo.rect().intersects(borderRect))
|
| return;
|
|
|
| // FIXME: We should do something clever when borders from distinct framesets meet at a join.
|
|
|