| Index: third_party/WebKit/Source/core/layout/LayoutTable.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTable.cpp b/third_party/WebKit/Source/core/layout/LayoutTable.cpp
|
| index 503bf9a13da502ebb88eee40dffb2ef699a4f3ba..759ed5255de5625c17b97f20ccc89eb77d3ca5bd 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTable.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTable.cpp
|
| @@ -823,12 +823,12 @@ void LayoutTable::addOverflowFromChildren() {
|
|
|
| // Add overflow from our caption.
|
| for (unsigned i = 0; i < m_captions.size(); i++)
|
| - addOverflowFromChild(m_captions[i]);
|
| + addOverflowFromChild(*m_captions[i]);
|
|
|
| // Add overflow from our sections.
|
| for (LayoutTableSection* section = topSection(); section;
|
| section = sectionBelow(section))
|
| - addOverflowFromChild(section);
|
| + addOverflowFromChild(*section);
|
| }
|
|
|
| void LayoutTable::paintObject(const PaintInfo& paintInfo,
|
|
|