blob: aebf02048319ec8a5e3a96a1adec39de506b6b26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<html>
<head>
<meta charset="utf8">
<script type="text/javascript" src="../http/tests/inspector-protocol/inspector-protocol-test.js"></script>
<script>
function test()
{
var command = { "method": "Runtime.evaluate", "params": { expression: "\"!!!\"" }, "id": InspectorTest._requestId + 1 };
InspectorTest.sendRawCommand(JSON.stringify(command).replace("!!!", "\\u041F\\u0440\\u0438\\u0432\\u0435\\u0442 \\u043C\\u0438\\u0440"), step2);
function step2(msg)
{
InspectorTest.logObject(msg);
InspectorTest.completeTest();
}
}
</script>
</head>
<body onload="runTest()">
</body>
</html>
|