Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / inspector / appcache / appcache-manifest-with-non-existing-file.html
blob1811a7ba415915f7405cf9a2512d31cf9b54b26e
1 <html>
2 <head>
3 <script src="../inspector-test.js"></script>
4 <script src="../resources-test.js"></script>
5 <script src="appcache-test.js"></script>
6 <script>
7 function test()
9 var frameId1;
10 var frameId2;
11 var frameId3;
13 WebInspector.ResourcesPanel.show();
14 InspectorTest.startApplicationCacheStatusesRecording();
15 InspectorTest.dumpApplicationCache();
16 InspectorTest.createAndNavigateIFrame("resources/page-with-manifest.php?manifestId=with-non-existing-file", step1);
18 function step1(frameId)
20 frameId1 = frameId;
21 // Waiting for at least two status events notifications from backend, to make sure
22 // we are not completing test before loading application cache.
23 InspectorTest.ensureFrameStatusEventsReceived(frameId, 2, step2)
26 function step2()
28 InspectorTest.waitForFrameManifestURLAndStatus(frameId1, "", applicationCache.UNCACHED, step3);
31 function step3()
33 InspectorTest.dumpApplicationCache();
34 InspectorTest.completeTest();
37 </script>
38 </head>
39 <body onload="runTest()">
40 <p>Tests that application cache model keeps track of manifest urls and statuses correctly when there is a non existing file listed in manifest.</p>
41 <a href="https://bugs.webkit.org/show_bug.cgi?id=64581">Bug 64581</a>
42 </body>
43 </html>