Upstream version 5.34.98.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / inspector / debugger / open-close-open-expected.txt
1 Tests that scripts panel displays resource content correctly after the open - close - open sequence. Bug 56747
2
3 Debugger was enabled.
4
5 Running: testSourceFrameContent
6 ==Source frame contents start==
7
8
9
10
11 <script>
12
13 function test()
14 {
15     InspectorTest.evaluateInPage("frontendReopeningCount", function(result) {
16         if (result._description === "0")
17             InspectorTest.evaluateInPage("reopenFrontend()")
18         else {
19             InspectorTest.runDebuggerTestSuite([
20                 function testSourceFrameContent(next)
21                 {
22                     InspectorTest.showScriptSource("open-close-open.html", didShowScriptSource);
23
24                     function didShowScriptSource(sourceFrame)
25                     {
26                         InspectorTest.dumpSourceFrameContents(sourceFrame);
27                         next();
28                     }
29                 }
30             ]);
31         }
32     });
33 }
34
35 </script>
36 ==Source frame contents end==
37 Debugger was disabled.
38