Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(780)

Unified Diff: Source/core/layout/LayoutTableAlgorithmFixed.cpp

Issue 926193003: Move rendering/RenderBox to layout/LayoutBox. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/layout/LayoutTable.cpp ('k') | Source/core/layout/LayoutTableCell.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/LayoutTableAlgorithmFixed.cpp
diff --git a/Source/core/layout/LayoutTableAlgorithmFixed.cpp b/Source/core/layout/LayoutTableAlgorithmFixed.cpp
index 61cd9a82716c2d55c7b5f2e67b8c00d839e7c920..1ac9d35005753229d3aedbc2764d919a7ba6a1ee 100644
--- a/Source/core/layout/LayoutTableAlgorithmFixed.cpp
+++ b/Source/core/layout/LayoutTableAlgorithmFixed.cpp
@@ -146,7 +146,7 @@ int LayoutTableAlgorithmFixed::calcWidthArray()
unsigned span = cell->colSpan();
int fixedBorderBoxLogicalWidth = 0;
// FIXME: Support other length types. If the width is non-auto, it should probably just use
- // RenderBox::computeLogicalWidthUsing to compute the width.
+ // LayoutBox::computeLogicalWidthUsing to compute the width.
if (logicalWidth.isFixed() && logicalWidth.isPositive()) {
fixedBorderBoxLogicalWidth = cell->adjustBorderBoxLogicalWidthForBoxSizing(logicalWidth.value());
logicalWidth.setValue(fixedBorderBoxLogicalWidth);
« no previous file with comments | « Source/core/layout/LayoutTable.cpp ('k') | Source/core/layout/LayoutTableCell.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698