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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/sources/sources-panel-extension-names.html

Issue 2533073003: [DevTools] Remove workspace-test.js part1. (Closed)
Patch Set: Created 4 years 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="../../http/tests/inspector/inspector-test.js"></script> 3 <script src="../../http/tests/inspector/inspector-test.js"></script>
4 <script src="../../http/tests/inspector/debugger-test.js"></script> 4 <script src="../../http/tests/inspector/debugger-test.js"></script>
5 <script src="../../http/tests/inspector/workspace-test.js"></script>
6 <script> 5 <script>
7 function test() 6 function test()
8 { 7 {
9 var contentScriptsNavigatorView = new Sources.ContentScriptsNavigatorView(); 8 var contentScriptsNavigatorView = new Sources.ContentScriptsNavigatorView();
10 contentScriptsNavigatorView.show(UI.inspectorView.element); 9 contentScriptsNavigatorView.show(UI.inspectorView.element);
11 10
12 var mockExecutionContext = { 11 var mockExecutionContext = {
13 id: 1234567, 12 id: 1234567,
14 isDefault: false, 13 isDefault: false,
15 origin: "chrome-extension://113581321345589144", 14 origin: "chrome-extension://113581321345589144",
(...skipping 12 matching lines...) Expand all
28 }, 27 },
29 ]); 28 ]);
30 } 29 }
31 30
32 </script> 31 </script>
33 </head> 32 </head>
34 <body onload="runTest()"> 33 <body onload="runTest()">
35 <p>The test verifies that extension names are resolved properly in navigator vie w.</p> 34 <p>The test verifies that extension names are resolved properly in navigator vie w.</p>
36 </body> 35 </body>
37 </html> 36 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698