| Index: third_party/WebKit/Source/platform/v8_inspector/V8ConsoleMessage.cpp
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8ConsoleMessage.cpp b/third_party/WebKit/Source/platform/v8_inspector/V8ConsoleMessage.cpp
|
| index 84bcc3d6e54df6d0d9eb67e53803ad062d12ce3f..d6cfe135073f407bc5cb4745e0b8c2106531d361 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8ConsoleMessage.cpp
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8ConsoleMessage.cpp
|
| @@ -84,7 +84,7 @@ private:
|
| if (value->IsSymbolObject())
|
| return append(v8::Local<v8::SymbolObject>::Cast(value)->ValueOf());
|
| if (value->IsNumberObject()) {
|
| - m_builder.appendNumber(v8::Local<v8::NumberObject>::Cast(value)->ValueOf());
|
| + m_builder.append(String16::fromDoublePrecision6(v8::Local<v8::NumberObject>::Cast(value)->ValueOf()));
|
| return true;
|
| }
|
| if (value->IsBooleanObject()) {
|
|
|