| Index: third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp b/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
|
| index 1cfb42f74330e7964fa9a1c9a29e743c93824800..e957a75496965fb1d1e15df56def9d85f6a44f29 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
|
| @@ -802,7 +802,10 @@ void LayoutTableSection::layout()
|
| {
|
| ASSERT(needsLayout());
|
| LayoutAnalyzer::Scope analyzer(*this);
|
| - ASSERT(!needsCellRecalc());
|
| + // TODO(dgrogan): Change this to RELEASE_ASSERT(!needsCellRecalc()) once
|
| + // containment and tables play nicely. https://crbug.com/616643
|
| + if (needsCellRecalc())
|
| + return;
|
| ASSERT(!table()->needsSectionRecalc());
|
|
|
| // addChild may over-grow m_grid but we don't want to throw away the memory too early as addChild
|
|
|