Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(297)

Unified Diff: Source/WebCore/rendering/RenderBlock.cpp

Issue 9129033: Merge 104121 - Source/WebCore: Crash in RenderRegion::getRegionRangeForBox. (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/963/
Patch Set: Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/WebCore/rendering/RenderBlock.cpp
===================================================================
--- Source/WebCore/rendering/RenderBlock.cpp (revision 105783)
+++ Source/WebCore/rendering/RenderBlock.cpp (working copy)
@@ -6616,7 +6616,7 @@
return 0;
RenderFlowThread* flowThread = enclosingRenderFlowThread();
- if (!flowThread || !flowThread->hasValidRegions())
+ if (!flowThread || !flowThread->hasValidRegionInfo())
return 0;
return flowThread->renderRegionForLine(offsetFromLogicalTopOfFirstPage() + blockOffset, true);
@@ -6637,7 +6637,7 @@
return false;
RenderFlowThread* flowThread = enclosingRenderFlowThread();
- if (!flowThread || !flowThread->hasValidRegions())
+ if (!flowThread || !flowThread->hasValidRegionInfo())
return 0;
return flowThread->logicalWidthChangedInRegions(this, offsetFromLogicalTopOfFirstPage());
« no previous file with comments | « LayoutTests/fast/regions/region-range-for-box-crash-expected.txt ('k') | Source/WebCore/rendering/RenderBox.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698