Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / inspector / resource-tree / resource-tree-reload.html
blob8399d83aeff9845eab7014933ef04f8db22218e7
1 <html>
2 <head>
3 <script src="../inspector-test.js"></script>
4 <script src="../resources-test.js"></script>
5 <script src="resource-tree-test.js"></script>
7 <link rel="stylesheet" href="resources/styles-initial.css">
9 <script>
11 function test()
13 // Resources panel has heavy initialization that does not work well with reloading-from-test.
14 InspectorTest.runAfterPendingDispatches(function() {
15 InspectorTest.reloadPage(step1);
16 });
18 function step1()
20 InspectorTest.runAfterResourcesAreFinished(["resource-tree-reload-iframe.html", "script-initial.js", "styles-initial-2.css"], step2);
23 function step2()
25 InspectorTest.dumpResourceTreeEverything();
26 InspectorTest.completeTest();
30 </script>
32 </head>
34 <body>
35 <p>
36 Tests resource tree model on page reload, compares resource tree against golden. Every line is important.
37 </p>
39 <iframe src="resources/resource-tree-reload-iframe.html" onload="runTest()">
41 </body>
42 </html>