Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / inspector / remote-object.html
blobe5e8045e88988f772cc2f399a0fb3d705f6cb52a
1 <html>
2 <head>
3 <script src="../http/tests/inspector/inspector-test.js"></script>
4 <script>
6 function test()
8 function callback(result)
10 InspectorTest.addResult("date = " + result.description.substring(0, 25));
11 InspectorTest.completeTest();
13 InspectorTest.evaluateInPage("new Date(2011, 11, 7, 12, 01)", callback);
16 </script>
17 </head>
19 <body onload="runTest()">
20 <p>
21 Tests formatting of different types of remote objects.
22 </p>
24 </body>
25 </html>