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.
michael@0 | 1 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 4 | |
michael@0 | 5 | // Check that the webconsole works if the network monitor is first opened, then |
michael@0 | 6 | // the user switches to the webconsole. See bug 970914. |
michael@0 | 7 | |
michael@0 | 8 | function test() { |
michael@0 | 9 | Task.spawn(runner).then(finishTest); |
michael@0 | 10 | |
michael@0 | 11 | function* runner() { |
michael@0 | 12 | const {tab} = yield loadTab("data:text/html;charset=utf8,<p>hello"); |
michael@0 | 13 | |
michael@0 | 14 | const target = TargetFactory.forTab(tab); |
michael@0 | 15 | const toolbox = yield gDevTools.showToolbox(target, "netmonitor"); |
michael@0 | 16 | |
michael@0 | 17 | const hud = yield openConsole(tab); |
michael@0 | 18 | |
michael@0 | 19 | hud.jsterm.execute("console.log('foobar bug970914')"); |
michael@0 | 20 | |
michael@0 | 21 | yield waitForMessages({ |
michael@0 | 22 | webconsole: hud, |
michael@0 | 23 | messages: [{ |
michael@0 | 24 | name: "console.log", |
michael@0 | 25 | text: "foobar bug970914", |
michael@0 | 26 | category: CATEGORY_WEBDEV, |
michael@0 | 27 | severity: SEVERITY_LOG, |
michael@0 | 28 | }], |
michael@0 | 29 | }); |
michael@0 | 30 | |
michael@0 | 31 | let text = hud.outputNode.textContent; |
michael@0 | 32 | isnot(text.indexOf("foobar bug970914"), -1, "console.log message confirmed"); |
michael@0 | 33 | ok(!/logging API|disabled by a script/i.test(text), |
michael@0 | 34 | "no warning about disabled console API"); |
michael@0 | 35 | } |
michael@0 | 36 | } |
michael@0 | 37 |