Add ewk_view_fullscreen_exit to exit fullscreen mode
[framework/web/webkit-efl.git] / LayoutTests / inspector / remote-object.html
1 <html>
2 <head>
3 <script src="../http/tests/inspector/inspector-test.js"></script>
4 <script>
5
6 function test()
7 {
8     function callback(result)
9     {
10         InspectorTest.addResult("date = " + result.description.substring(0, 25));
11         InspectorTest.completeTest();
12     }
13     InspectorTest.evaluateInPage("new Date(2011, 11, 7, 12, 01)", callback);
14 }
15
16 </script>
17 </head>
18
19 <body onload="runTest()">
20 <p>
21 Tests formatting of different types of remote objects.
22 </p>
23
24 </body>
25 </html>