summaryrefslogtreecommitdiff
path: root/toolkit/devtools/timeline/test/browser_timeline_aaa_run_first_leaktest.js
blob: 33ecca9202788f7b32343e2a9cc13a86409ef1d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

/**
 * Tests if the timeline leaks on initialization and sudden destruction.
 * You can also use this initialization format as a template for other tests.
 */

add_task(function*() {
  let { target, panel } = yield initTimelinePanel(SIMPLE_URL);

  ok(target, "Should have a target available.");
  ok(panel, "Should have a panel available.");

  ok(panel.panelWin.gToolbox, "Should have a toolbox reference on the panel window.");
  ok(panel.panelWin.gTarget, "Should have a target reference on the panel window.");
  ok(panel.panelWin.gFront, "Should have a front reference on the panel window.");
});