| Index: third_party/WebKit/Source/platform/geometry/FloatSize.cpp
|
| diff --git a/third_party/WebKit/Source/platform/geometry/FloatSize.cpp b/third_party/WebKit/Source/platform/geometry/FloatSize.cpp
|
| index 38c3375fff957d4bcbb4be9aa07d068e022b27cf..d54d55d8979fd84fcaa027369e768b84f9096d46 100644
|
| --- a/third_party/WebKit/Source/platform/geometry/FloatSize.cpp
|
| +++ b/third_party/WebKit/Source/platform/geometry/FloatSize.cpp
|
| @@ -61,11 +61,9 @@ FloatSize FloatSize::narrowPrecision(double width, double height)
|
| return FloatSize(narrowPrecisionToFloat(width), narrowPrecisionToFloat(height));
|
| }
|
|
|
| -#ifndef NDEBUG
|
| String FloatSize::toString() const
|
| {
|
| - return String::format("%fx%f", width(), height());
|
| + return String::format("%lgx%lg", width(), height());
|
| }
|
| -#endif
|
|
|
| } // namespace blink
|
|
|