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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/inspector/extensions-test.js

Issue 2412023002: DevTools: migrate InspectorView to tabbed view location. (Closed)
Patch Set: made layers panel closeable. 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 function extensionFunctions() 1 function extensionFunctions()
2 { 2 {
3 var functions = ""; 3 var functions = "";
4 4
5 for (symbol in window) { 5 for (symbol in window) {
6 if (/^extension_/.exec(symbol) && typeof window[symbol] === "function") 6 if (/^extension_/.exec(symbol) && typeof window[symbol] === "function")
7 functions += window[symbol].toString(); 7 functions += window[symbol].toString();
8 } 8 }
9 return functions; 9 return functions;
10 } 10 }
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 64
65 } 65 }
66 66
67 function extension_showPanel(panelId, callback) 67 function extension_showPanel(panelId, callback)
68 { 68 {
69 evaluateOnFrontend("InspectorTest.showPanel(unescape('" + escape(panelId) + "')).then(function() { reply(); });", callback); 69 evaluateOnFrontend("InspectorTest.showPanel(unescape('" + escape(panelId) + "')).then(function() { reply(); });", callback);
70 } 70 }
71 71
72 var test = function() 72 var test = function()
73 { 73 {
74 WebInspector.moduleSetting("shortcutPanelSwitch").set(true);
74 InspectorTest.runExtensionTests(); 75 InspectorTest.runExtensionTests();
75 } 76 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698