Index: third_party/WebKit/Source/platform/LengthFunctions.cpp |
diff --git a/third_party/WebKit/Source/platform/LengthFunctions.cpp b/third_party/WebKit/Source/platform/LengthFunctions.cpp |
index eb5150d6fbb05a64e41f661121fb36ff2a78a1e8..e469e2ad439883a0012b5cbe9064d227ce1990d3 100644 |
--- a/third_party/WebKit/Source/platform/LengthFunctions.cpp |
+++ b/third_party/WebKit/Source/platform/LengthFunctions.cpp |
@@ -64,7 +64,8 @@ LayoutUnit minimumValueForLength(const Length& length, |
case Fixed: |
return LayoutUnit(length.value()); |
case Percent: |
- // Don't remove the extra cast to float. It is needed for rounding on 32-bit Intel machines that use the FPU stack. |
+ // Don't remove the extra cast to float. It is needed for rounding on |
+ // 32-bit Intel machines that use the FPU stack. |
return LayoutUnit( |
static_cast<float>(maximumValue * length.percent() / 100.0f)); |
case Calculated: |