3 <script src=
"../inspector-test.js"></script>
4 <script src=
"../resources-test.js"></script>
5 <script src=
"appcache-test.js"></script>
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
)
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
)
28 InspectorTest
.waitForFrameManifestURLAndStatus(frameId1
, "", applicationCache
.UNCACHED
, step3
);
33 InspectorTest
.dumpApplicationCache();
34 InspectorTest
.completeTest();
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>