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

Unified 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, 3 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-navigator.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-navigator.html b/third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-navigator.html
new file mode 100644
index 0000000000000000000000000000000000000000..294469febb932e2a1c03f8ec086020120cb92740
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-navigator.html
@@ -0,0 +1,73 @@
+<html>
+<head>
+<script src="../inspector-test.js"></script>
+<script src="../debugger-test.js"></script>
+<script src="../workspace-test.js"></script>
+<script src="../isolated-filesystem-test.js"></script>
+<script src="./persistence-test.js"></script>
+<script src="./resources/foo.js"></script>
+<script>
+
+function test()
+{
+ var sourcesNavigator = new WebInspector.SourcesNavigatorView();
+ sourcesNavigator.show(WebInspector.inspectorView.element);
+ var fs = new InspectorTest.TestFileSystem("file:///var/www");
+ var fsEntry = InspectorTest.addFooJSFile(fs);
+
+ InspectorTest.runTestSuite([
+ function addFileSystem(next)
+ {
+ fs.reportCreated(next);
+ },
+
+ function waitForUISourceCodes(next)
+ {
+ var promises = [
+ InspectorTest.waitForUISourceCode("foo.js", WebInspector.projectTypes.Network),
+ InspectorTest.waitForUISourceCode("foo.js", WebInspector.projectTypes.FileSystem)
+ ];
+ Promise.all(promises).then(onUISourceCodesAdded);
+
+ function onUISourceCodesAdded()
+ {
+ InspectorTest.dumpNavigatorView(sourcesNavigator);
+ next();
+ }
+ },
+
+ function addFileMapping(next)
+ {
+ InspectorTest.waitForBinding("foo.js").then(onBindingCreated);
+ WebInspector.fileSystemMapping.addFileMapping(fs.fileSystemPath, "http://127.0.0.1:8000", "/");
+
+ function onBindingCreated(binding)
+ {
+ InspectorTest.dumpNavigatorView(sourcesNavigator);
+ next();
+ }
+ },
+
+ function removeFileMapping(next)
+ {
+ WebInspector.persistence.addEventListener(WebInspector.Persistence.Events.BindingRemoved, onBindingRemoved);
+ WebInspector.fileSystemMapping.removeFileMapping(fs.fileSystemPath, "http://127.0.0.1:8000", "/");
+
+ function onBindingRemoved(event)
+ {
+ var binding = event.data;
+ if (binding.network.name() !== "foo.js")
+ return
+ WebInspector.persistence.removeEventListener(WebInspector.Persistence.Events.BindingRemoved, onBindingRemoved);
+ InspectorTest.dumpNavigatorView(sourcesNavigator);
+ next();
+ }
+ },
+ ]);
+};
+</script>
+</head>
+<body onload="runTest()">
+<p>Verify that navigator view removes mapped UISourceCodes.</p>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698