Fix for bug 838069 (intermittent browser_toolbox_window_shortcuts.js); r=jwalker

This commit is contained in:
Girish Sharma 2013-02-27 21:07:14 +05:30
parent afe1a90c87
commit f185a8db34

View File

@ -14,7 +14,8 @@ function test() {
addTab("about:blank", function() {
toolIDs = [];
for (let [id, definition] of gDevTools._tools) {
if (definition.key) {
// Skipping Profiler due to bug 838069. Re-enable when bug 845752 is fixed
if (definition.key && id != "jsprofiler") {
toolIDs.push(id);
}
}