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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-navigator.html

Issue 2349343002: DevTools: introduce persistence/ module (Closed)
Patch Set: reupload Created 4 years, 2 months 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
(Empty)
1 <html>
2 <head>
3 <script src="../inspector-test.js"></script>
4 <script src="../debugger-test.js"></script>
5 <script src="../workspace-test.js"></script>
6 <script src="../isolated-filesystem-test.js"></script>
7 <script src="./persistence-test.js"></script>
8 <script src="./resources/foo.js"></script>
9 <script>
10
11 function test()
12 {
13 var sourcesNavigator = new WebInspector.SourcesNavigatorView();
14 sourcesNavigator.show(WebInspector.inspectorView.element);
15 var fs = new InspectorTest.TestFileSystem("file:///var/www");
16 var fsEntry = InspectorTest.addFooJSFile(fs);
17
18 InspectorTest.runTestSuite([
19 function addFileSystem(next)
20 {
21 fs.reportCreated(next);
22 },
23
24 function waitForUISourceCodes(next)
25 {
26 var promises = [
27 InspectorTest.waitForUISourceCode("foo.js", WebInspector.project Types.Network),
28 InspectorTest.waitForUISourceCode("foo.js", WebInspector.project Types.FileSystem)
29 ];
30 Promise.all(promises).then(onUISourceCodesAdded);
31
32 function onUISourceCodesAdded()
33 {
34 InspectorTest.dumpNavigatorView(sourcesNavigator);
35 next();
36 }
37 },
38
39 function addFileMapping(next)
40 {
41 InspectorTest.waitForBinding("foo.js").then(onBindingCreated);
42 WebInspector.fileSystemMapping.addFileMapping(fs.fileSystemPath, "ht tp://127.0.0.1:8000", "/");
43
44 function onBindingCreated(binding)
45 {
46 InspectorTest.dumpNavigatorView(sourcesNavigator);
47 next();
48 }
49 },
50
51 function removeFileMapping(next)
52 {
53 WebInspector.persistence.addEventListener(WebInspector.Persistence.E vents.BindingRemoved, onBindingRemoved);
54 WebInspector.fileSystemMapping.removeFileMapping(fs.fileSystemPath, "http://127.0.0.1:8000", "/");
55
56 function onBindingRemoved(event)
57 {
58 var binding = event.data;
59 if (binding.network.name() !== "foo.js")
60 return
61 WebInspector.persistence.removeEventListener(WebInspector.Persis tence.Events.BindingRemoved, onBindingRemoved);
62 InspectorTest.dumpNavigatorView(sourcesNavigator);
63 next();
64 }
65 },
66 ]);
67 };
68 </script>
69 </head>
70 <body onload="runTest()">
71 <p>Verify that navigator view removes mapped UISourceCodes.</p>
72 </body>
73 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698