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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector-protocol/json-parse.js

Issue 2950713002: [DevTools] New harness for inspector-protocol layout tests (Closed)
Patch Set: addressed comments, 4 tests Created 3 years, 6 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 (async function(testRunner) {
2 let {page, session, dp} = await testRunner.startBlank('Tests that backend corr ectly handles unicode in messages');
3
4 var requestId = 100500;
5 var command = {
6 'method': 'Runtime.evaluate',
7 'params': {expression: '\'!!!\''},
8 'id': requestId
9 };
10 var message = JSON.stringify(command).replace('!!!', '\\u041F\\u0440\\u0438\\u 0432\\u0435\\u0442 \\u043C\\u0438\\u0440');
11 testRunner.logMessage(await session.sendRawCommand(requestId, message));
12 testRunner.completeTest();
13 })
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698