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

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

Issue 2846673005: Roll third_party/inspector_protocol to efefa86c3183d307f0a0e53bf568fe57c5b58849 (Closed)
Patch Set: Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: test/inspector/debugger/protocol-string-to-double-locale.js
diff --git a/test/inspector/debugger/protocol-string-to-double-locale.js b/test/inspector/debugger/protocol-string-to-double-locale.js
new file mode 100644
index 0000000000000000000000000000000000000000..6ffa6b98921ac10540e48a47640c8b55408df5e8
--- /dev/null
+++ b/test/inspector/debugger/protocol-string-to-double-locale.js
@@ -0,0 +1,21 @@
+// Copyright 2017 the V8 project authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+(async function() {
+ utils.setlocale("fr_CA.UTF-8");
+ Protocol.Debugger.enable();
+ Protocol.Runtime.evaluate({
+ expression: 'inspector.breakProgram(\'\', JSON.stringify({a: 0.5}))'});
+ let message = await Protocol.Debugger.oncePaused();
+ InspectorTest.logObject(message.params.data || {});
+ Protocol.Debugger.resume();
+
+ Protocol.Runtime.evaluate({
+ expression: 'inspector.breakProgram(\'\', JSON.stringify({a: 1}))'});
+ message = await Protocol.Debugger.oncePaused();
+ InspectorTest.logObject(message.params.data || {});
+ Protocol.Debugger.resume();
+
+ InspectorTest.completeTest();
+})();

Powered by Google App Engine
This is Rietveld 408576698