| Index: third_party/WebKit/Source/core/layout/TableLayoutAlgorithmFixed.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/TableLayoutAlgorithmFixed.cpp b/third_party/WebKit/Source/core/layout/TableLayoutAlgorithmFixed.cpp
|
| index 9fc6eb415709866be19d84b32da0d611494ecd9c..08d969fcaa4088f6e35a28a401c8c989db985599 100644
|
| --- a/third_party/WebKit/Source/core/layout/TableLayoutAlgorithmFixed.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/TableLayoutAlgorithmFixed.cpp
|
| @@ -180,6 +180,11 @@ void TableLayoutAlgorithmFixed::computeIntrinsicLogicalWidths(LayoutUnit& minWid
|
| minWidth = maxWidth = LayoutUnit(calcWidthArray());
|
| }
|
|
|
| +LayoutUnit TableLayoutAlgorithmFixed::scaledWidthFromPercentColumns()
|
| +{
|
| + return LayoutUnit(0);
|
| +}
|
| +
|
| void TableLayoutAlgorithmFixed::applyPreferredLogicalWidthQuirks(LayoutUnit& minWidth, LayoutUnit& maxWidth) const
|
| {
|
| Length tableLogicalWidth = m_table->style()->logicalWidth();
|
|
|