| 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 7ed46e8678ee4fb93309222f4e8ffb0423031181..fc6328921f0d096245b5cf5b09d47034ea2e6f98 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
|
| @@ -87,6 +87,15 @@ void CellSpan::ensureConsistency(const unsigned maximumSpanSize)
|
| RELEASE_ASSERT(m_start <= m_end);
|
| }
|
|
|
| +LayoutTableSection::CellStruct::CellStruct()
|
| + : inColSpan(false)
|
| +{
|
| +}
|
| +
|
| +LayoutTableSection::CellStruct::~CellStruct()
|
| +{
|
| +}
|
| +
|
| LayoutTableSection::LayoutTableSection(Element* element)
|
| : LayoutTableBoxComponent(element)
|
| , m_cCol(0)
|
|
|