| OLD | NEW |
| 1 // Copyright 2017 the V8 project authors. All rights reserved. | 1 // Copyright 2017 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 let {session, contextGroup, Protocol} = InspectorTest.start('Tests that double n
umbers are parsed and serialized correctly on different locales'); |
| 6 |
| 5 (async function() { | 7 (async function() { |
| 6 InspectorTest.log('This test verifies that we correctly parse doubles with non
-US locale'); | 8 InspectorTest.log('This test verifies that we correctly parse doubles with non
-US locale'); |
| 7 utils.setlocale("fr_CA.UTF-8"); | 9 utils.setlocale("fr_CA.UTF-8"); |
| 8 Protocol.Debugger.enable(); | 10 Protocol.Debugger.enable(); |
| 9 Protocol.Runtime.evaluate({ | 11 Protocol.Runtime.evaluate({ |
| 10 expression: 'inspector.breakProgram(\'\', JSON.stringify({a: 0.5}))'}); | 12 expression: 'inspector.breakProgram(\'\', JSON.stringify({a: 0.5}))'}); |
| 11 let message = await Protocol.Debugger.oncePaused(); | 13 let message = await Protocol.Debugger.oncePaused(); |
| 12 InspectorTest.logObject(message.params.data || {}); | 14 InspectorTest.logObject(message.params.data || {}); |
| 13 Protocol.Debugger.resume(); | 15 Protocol.Debugger.resume(); |
| 14 | 16 |
| 15 Protocol.Runtime.evaluate({ | 17 Protocol.Runtime.evaluate({ |
| 16 expression: 'inspector.breakProgram(\'\', JSON.stringify({a: 1}))'}); | 18 expression: 'inspector.breakProgram(\'\', JSON.stringify({a: 1}))'}); |
| 17 message = await Protocol.Debugger.oncePaused(); | 19 message = await Protocol.Debugger.oncePaused(); |
| 18 InspectorTest.logObject(message.params.data || {}); | 20 InspectorTest.logObject(message.params.data || {}); |
| 19 Protocol.Debugger.resume(); | 21 Protocol.Debugger.resume(); |
| 20 | 22 |
| 21 InspectorTest.completeTest(); | 23 InspectorTest.completeTest(); |
| 22 })(); | 24 })(); |
| OLD | NEW |