Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / http / tests / inspector / console-cd.html
1 <html>
2 <head>
3 <script src="console-test.js"></script>
4 <script src="inspector-test.js"></script>
5
6 <script>
7
8 function test()
9 {
10     InspectorTest.changeExecutionContext("myIFrame");
11     InspectorTest.evaluateInConsoleAndDump("foo", finish);
12     function finish()
13     {
14         InspectorTest.completeTest();
15     }
16 }
17
18 </script>
19 </head>
20
21 <body>
22 <p>
23 Tests that console evaluation can be performed in an iframe context.<a href="https://bugs.webkit.org/show_bug.cgi?id=19872">Bug 19872.</a>
24 </p>
25 <iframe name="myIFrame" src="http://localhost:8000/inspector/resources/console-cd-iframe.html" onload="runTest()"></iframe>
26
27 </body>
28 </html>