Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 /* Any copyright is dedicated to the Public Domain.
2 http://creativecommons.org/publicdomain/zero/1.0/ */
4 /**
5 * Tests if the network monitor leaks on initialization and sudden destruction.
6 * You can also use this initialization format as a template for other tests.
7 */
9 function test() {
10 initNetMonitor(SIMPLE_URL).then(([aTab, aDebuggee, aMonitor]) => {
11 info("Starting test... ");
13 let { document, NetMonitorView, NetMonitorController } = aMonitor.panelWin;
14 let { RequestsMenu, NetworkDetails } = NetMonitorView;
16 ok(aTab, "Should have a tab available.");
17 ok(aDebuggee, "Should have a debuggee available.");
18 ok(aMonitor, "Should have a network monitor pane available.");
20 ok(document, "Should have a document available.");
21 ok(NetMonitorView, "Should have a NetMonitorView object available.");
22 ok(NetMonitorController, "Should have a NetMonitorController object available.");
23 ok(RequestsMenu, "Should have a RequestsMenu object available.");
24 ok(NetworkDetails, "Should have a NetworkDetails object available.");
26 teardown(aMonitor).then(finish);
27 });
28 }