mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 20:47:44 +00:00
886f65d972
--HG-- rename : browser/devtools/performance/test/browser_perf-aaa-run-first-leaktest.js => browser/devtools/performance/test/browser_aaa-run-first-leaktest.js
41 lines
1.3 KiB
JavaScript
41 lines
1.3 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
/**
|
|
* Tests if the built-in profiler module doesn't deactivate when the toolbox
|
|
* is destroyed if there are other consumers using it.
|
|
*/
|
|
|
|
let test = Task.async(function*() {
|
|
let { panel: firstPanel } = yield initPerformance(SIMPLE_URL);
|
|
let firstFront = firstPanel.panelWin.gFront;
|
|
|
|
let activated = firstFront.once("profiler-activated");
|
|
yield firstFront.startRecording();
|
|
yield activated;
|
|
|
|
let { panel: secondPanel } = yield initPerformance(SIMPLE_URL);
|
|
let secondFront = secondPanel.panelWin.gFront;
|
|
loadFrameScripts();
|
|
|
|
let alreadyActive = secondFront.once("profiler-already-active");
|
|
yield secondFront.startRecording();
|
|
yield alreadyActive;
|
|
|
|
// Manually teardown the tabs so we can check profiler status
|
|
let tab1 = firstPanel.target.tab;
|
|
let tab2 = secondPanel.target.tab;
|
|
yield firstPanel._toolbox.destroy();
|
|
yield removeTab(tab1);
|
|
ok((yield PMM_isProfilerActive()),
|
|
"The built-in profiler module should still be active.");
|
|
|
|
yield secondPanel._toolbox.destroy();
|
|
ok(!(yield PMM_isProfilerActive()),
|
|
"The built-in profiler module should no longer be active.");
|
|
yield removeTab(tab2);
|
|
tab1 = tab2 = null;
|
|
|
|
finish();
|
|
});
|