Index: Source/WebCore/rendering/RenderTableCell.cpp |
=================================================================== |
--- Source/WebCore/rendering/RenderTableCell.cpp (revision 115918) |
+++ Source/WebCore/rendering/RenderTableCell.cpp (working copy) |
@@ -143,7 +143,7 @@ |
// Percentages don't need to be handled since they're always treated this way (even when specified on the cells). |
// See Bugzilla bug 8126 for details. |
if (colWidthSum.isFixed() && colWidthSum.value() > 0) |
- colWidthSum = Length(max(0.0f, colWidthSum.value() - borderAndPaddingLogicalWidth()), Fixed); |
+ colWidthSum = Length(max(0, colWidthSum.value() - borderAndPaddingLogicalWidth()), Fixed); |
return colWidthSum; |
} |