Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / inspector / sources / debugger / open-close-open-expected.txt
blob7dae097f5e0c586f67174bbe0c6137c428438909
1 Tests that scripts panel displays resource content correctly after the open - close - open sequence. Bug 56747
4 Running: testSourceFrameContent
5 ==Source frame contents start==
6 <html>
7 <head>
8 <script src="../../../http/tests/inspector/inspector-test.js"></script>
9 <script src="../../../http/tests/inspector/debugger-test.js"></script>
10 <script>
12 function test()
14     InspectorTest.evaluateInPage("frontendReopeningCount", function(result) {
15         if (result._description === "0")
16             InspectorTest.evaluateInPage("reopenFrontend()")
17         else {
18             InspectorTest.runDebuggerTestSuite([
19                 function testSourceFrameContent(next)
20                 {
21                     InspectorTest.showScriptSource("open-close-open.html", didShowScriptSource);
23                     function didShowScriptSource(sourceFrame)
24                     {
25                         InspectorTest.dumpSourceFrameContents(sourceFrame);
26                         next();
27                     }
28                 }
29             ]);
30         }
31     });
34 </script>
36 </head>
38 <body onload="runTest()">
39 <p>
40 Tests that scripts panel displays resource content correctly after the open - close - open sequence.
41 <a href="https://bugs.webkit.org/show_bug.cgi?id=56747">Bug 56747</a>
42 </p>
43 </body>
44 </html>
46 ==Source frame contents end==