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

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

Issue 2388303003: DevTools: hide new navigator interface behind experiment (Closed)
Patch Set: fix test 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/sources/NavigatorView.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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="../debugger-test.js"></script> 4 <script src="../debugger-test.js"></script>
5 <script src="../workspace-test.js"></script> 5 <script src="../workspace-test.js"></script>
6 <script src="../isolated-filesystem-test.js"></script> 6 <script src="../isolated-filesystem-test.js"></script>
7 <script src="./persistence-test.js"></script> 7 <script src="./persistence-test.js"></script>
8 <script src="./resources/foo.js"></script> 8 <script src="./resources/foo.js"></script>
9 <script> 9 <script>
10 10
11 function test() 11 function test()
12 { 12 {
13 Runtime.experiments.enableForTest("persistence2");
13 var sourcesNavigator = new WebInspector.SourcesNavigatorView(); 14 var sourcesNavigator = new WebInspector.SourcesNavigatorView();
14 sourcesNavigator.show(WebInspector.inspectorView.element); 15 sourcesNavigator.show(WebInspector.inspectorView.element);
15 var fs = new InspectorTest.TestFileSystem("file:///var/www"); 16 var fs = new InspectorTest.TestFileSystem("file:///var/www");
16 var fsEntry = InspectorTest.addFooJSFile(fs); 17 var fsEntry = InspectorTest.addFooJSFile(fs);
17 18
18 InspectorTest.runTestSuite([ 19 InspectorTest.runTestSuite([
19 function addFileSystem(next) 20 function addFileSystem(next)
20 { 21 {
21 fs.reportCreated(next); 22 fs.reportCreated(next);
22 }, 23 },
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 } 65 }
65 }, 66 },
66 ]); 67 ]);
67 }; 68 };
68 </script> 69 </script>
69 </head> 70 </head>
70 <body onload="runTest()"> 71 <body onload="runTest()">
71 <p>Verify that navigator view removes mapped UISourceCodes.</p> 72 <p>Verify that navigator view removes mapped UISourceCodes.</p>
72 </body> 73 </body>
73 </html> 74 </html>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/sources/NavigatorView.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698