summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/inspector/remote-object.html
blob: e5e8045e88988f772cc2f399a0fb3d705f6cb52a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<html>
<head>
<script src="../http/tests/inspector/inspector-test.js"></script>
<script>

function test()
{
    function callback(result)
    {
        InspectorTest.addResult("date = " + result.description.substring(0, 25));
        InspectorTest.completeTest();
    }
    InspectorTest.evaluateInPage("new Date(2011, 11, 7, 12, 01)", callback);
}

</script>
</head>

<body onload="runTest()">
<p>
Tests formatting of different types of remote objects.
</p>

</body>
</html>