| Index: Source/core/rendering/RenderFlowThread.cpp
|
| diff --git a/Source/core/rendering/RenderFlowThread.cpp b/Source/core/rendering/RenderFlowThread.cpp
|
| index 0257c1ba0a16c6475fdcdd4e33fd4375252431c9..b8614d5dc989ef281d0e7124c61d8d9ec408f11b 100644
|
| --- a/Source/core/rendering/RenderFlowThread.cpp
|
| +++ b/Source/core/rendering/RenderFlowThread.cpp
|
| @@ -126,13 +126,11 @@ void RenderFlowThread::validateRegions()
|
| m_regionsHaveUniformLogicalHeight = true;
|
|
|
| if (hasRegions()) {
|
| - LayoutUnit previousRegionLogicalWidth = 0;
|
| LayoutUnit previousRegionLogicalHeight = 0;
|
| bool firstRegionVisited = false;
|
|
|
| for (RenderRegionList::iterator iter = m_regionList.begin(); iter != m_regionList.end(); ++iter) {
|
| RenderRegion* region = *iter;
|
| - LayoutUnit regionLogicalWidth = region->pageLogicalWidth();
|
| LayoutUnit regionLogicalHeight = region->pageLogicalHeight();
|
|
|
| if (!firstRegionVisited) {
|
| @@ -142,7 +140,7 @@ void RenderFlowThread::validateRegions()
|
| m_regionsHaveUniformLogicalHeight = false;
|
| }
|
|
|
| - previousRegionLogicalWidth = regionLogicalWidth;
|
| + previousRegionLogicalHeight = regionLogicalHeight;
|
| }
|
| }
|
| }
|
|
|