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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-go-to-file-dialog.html

Issue 2398773002: DevTools: fix http/tests/inspector/persistence/persistence-go-to-file-dialog.html (Closed)
Patch Set: 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
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
(...skipping 28 matching lines...) Expand all
39 { 39 {
40 dumpGoToSourceDialog(); 40 dumpGoToSourceDialog();
41 next(); 41 next();
42 }, 42 },
43 ]); 43 ]);
44 44
45 function dumpGoToSourceDialog() 45 function dumpGoToSourceDialog()
46 { 46 {
47 WebInspector.panels.sources._sourcesView.showOpenResourceDialog(); 47 WebInspector.panels.sources._sourcesView.showOpenResourceDialog();
48 var dialog = WebInspector.OpenResourceDialog._instanceForTest; 48 var dialog = WebInspector.OpenResourceDialog._instanceForTest;
49 var keys = [];
49 for (var i = 0; i < dialog.itemCount(); ++i) 50 for (var i = 0; i < dialog.itemCount(); ++i)
50 InspectorTest.addResult(dialog.itemKeyAt(i)); 51 keys.push(dialog.itemKeyAt(i));
52 keys.sort();
53 InspectorTest.addResult(keys.join("\n"));
51 WebInspector.Dialog._instance.detach(); 54 WebInspector.Dialog._instance.detach();
52 } 55 }
53 }; 56 };
54 </script> 57 </script>
55 </head> 58 </head>
56 <body onload="runTest()"> 59 <body onload="runTest()">
57 <p>Verify that GoTo source dialog filters out mapped uiSourceCodes.</p> 60 <p>Verify that GoTo source dialog filters out mapped uiSourceCodes.</p>
58 </body> 61 </body>
59 </html> 62 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698