Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/inspector/appcache/appcache-swap.html

Issue 2493373002: DevTools: rename WebInspector into modules. (Closed)
Patch Set: for bots Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../inspector-test.js"></script> 3 <script src="../inspector-test.js"></script>
4 <script src="appcache-test.js"></script> 4 <script src="appcache-test.js"></script>
5 <script src="../network-test.js"></script> 5 <script src="../network-test.js"></script>
6 <script src="../resources-test.js"></script> 6 <script src="../resources-test.js"></script>
7 <script> 7 <script>
8 function test() 8 function test()
9 { 9 {
10 var frameId1; 10 var frameId1;
11 var frameId2; 11 var frameId2;
12 12
13 WebInspector.viewManager.showView("resources"); 13 UI.viewManager.showView("resources");
14 InspectorTest.startApplicationCacheStatusesRecording(); 14 InspectorTest.startApplicationCacheStatusesRecording();
15 InspectorTest.dumpApplicationCache(); 15 InspectorTest.dumpApplicationCache();
16 InspectorTest.createAndNavigateIFrame("resources/with-versioned-manifest.php ", step1); 16 InspectorTest.createAndNavigateIFrame("resources/with-versioned-manifest.php ", step1);
17 17
18 function step1(frameId) 18 function step1(frameId)
19 { 19 {
20 frameId1 = frameId; 20 frameId1 = frameId;
21 InspectorTest.waitForFrameManifestURLAndStatus(frameId1, "resources/vers ioned-manifest.php", applicationCache.IDLE, step2); 21 InspectorTest.waitForFrameManifestURLAndStatus(frameId1, "resources/vers ioned-manifest.php", applicationCache.IDLE, step2);
22 } 22 }
23 23
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 InspectorTest.completeTest(); 57 InspectorTest.completeTest();
58 } 58 }
59 } 59 }
60 </script> 60 </script>
61 </head> 61 </head>
62 <body onload="runTest()"> 62 <body onload="runTest()">
63 <p>Tests that application cache model keeps track of manifest urls and statuses correctly after UPDATEREADY event and swapCache() call.</p> 63 <p>Tests that application cache model keeps track of manifest urls and statuses correctly after UPDATEREADY event and swapCache() call.</p>
64 <a href="https://bugs.webkit.org/show_bug.cgi?id=72123">Bug 72123</a> 64 <a href="https://bugs.webkit.org/show_bug.cgi?id=72123">Bug 72123</a>
65 </body> 65 </body>
66 </html> 66 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698