Chromium Code Reviews| Index: Source/core/rendering/style/RenderStyle.h |
| diff --git a/Source/core/rendering/style/RenderStyle.h b/Source/core/rendering/style/RenderStyle.h |
| index eb5496ea25990b2a81140b143f74c47db208e030..e645bfb4af7fe7080c6c5cabac259fcabaacba01 100644 |
| --- a/Source/core/rendering/style/RenderStyle.h |
| +++ b/Source/core/rendering/style/RenderStyle.h |
| @@ -563,6 +563,7 @@ public: |
| EClear clear() const { return static_cast<EClear>(noninherited_flags._clear); } |
| ETableLayout tableLayout() const { return static_cast<ETableLayout>(noninherited_flags._table_layout); } |
| + bool isFixedTableLayout() const { return static_cast<ETableLayout>(noninherited_flags._table_layout) == TFIXED && !logicalWidth().isAuto(); } |
|
mstensho (USE GERRIT)
2014/05/07 19:12:28
Nit: still duplicating the "static_cast<ETableLayo
|
| const Font& font() const; |
| const FontMetrics& fontMetrics() const; |