Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(712)

Side by Side Diff: test/inspector/debugger/protocol-string-to-double-locale.js

Issue 2846673005: Roll third_party/inspector_protocol to efefa86c3183d307f0a0e53bf568fe57c5b58849 (Closed)
Patch Set: ac Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 (async function() {
6 InspectorTest.log('This test verifies that we correctly parse doubles with non -US locale');
7 utils.setlocale("fr_CA.UTF-8");
8 Protocol.Debugger.enable();
9 Protocol.Runtime.evaluate({
10 expression: 'inspector.breakProgram(\'\', JSON.stringify({a: 0.5}))'});
11 let message = await Protocol.Debugger.oncePaused();
12 InspectorTest.logObject(message.params.data || {});
13 Protocol.Debugger.resume();
14
15 Protocol.Runtime.evaluate({
16 expression: 'inspector.breakProgram(\'\', JSON.stringify({a: 1}))'});
17 message = await Protocol.Debugger.oncePaused();
18 InspectorTest.logObject(message.params.data || {});
19 Protocol.Debugger.resume();
20
21 InspectorTest.completeTest();
22 })();
OLDNEW
« no previous file with comments | « src/inspector/string-util.cc ('k') | test/inspector/debugger/protocol-string-to-double-locale-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698