| Index: third_party/WebKit/Source/core/layout/LayoutMultiColumnSet.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutMultiColumnSet.cpp b/third_party/WebKit/Source/core/layout/LayoutMultiColumnSet.cpp
|
| index d72be73a51463b16d41c27f51a54ebdfeb10b149..4b3f00c2e21d8c46f5f7b6df64b98dffc6c7d5fa 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutMultiColumnSet.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutMultiColumnSet.cpp
|
| @@ -99,7 +99,7 @@ bool LayoutMultiColumnSet::isPageLogicalHeightKnown() const
|
|
|
| LayoutUnit LayoutMultiColumnSet::nextLogicalTopForUnbreakableContent(LayoutUnit flowThreadOffset, LayoutUnit contentLogicalHeight) const
|
| {
|
| - ASSERT(pageLogicalTopForOffset(flowThreadOffset) == flowThreadOffset);
|
| + ASSERT(flowThreadOffset.mightBeSaturated() || pageLogicalTopForOffset(flowThreadOffset) == flowThreadOffset);
|
| FragmentationContext* enclosingFragmentationContext = multiColumnFlowThread()->enclosingFragmentationContext();
|
| if (!enclosingFragmentationContext) {
|
| // If there's no enclosing fragmentation context, there'll ever be only one row, and all
|
|
|