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 | /* vim:set ts=2 sw=2 sts=2 et: */ |
michael@0 | 2 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 5 | |
michael@0 | 6 | const TEST_URI = "http://example.com/browser/browser/devtools/webconsole/test/test-bug-585956-console-trace.html"; |
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 | let {tab} = yield loadTab("data:text/html;charset=utf8,<p>hello"); |
michael@0 | 13 | let hud = yield openConsole(tab); |
michael@0 | 14 | |
michael@0 | 15 | content.location = TEST_URI; |
michael@0 | 16 | |
michael@0 | 17 | let [result] = yield waitForMessages({ |
michael@0 | 18 | webconsole: hud, |
michael@0 | 19 | messages: [{ |
michael@0 | 20 | name: "console.trace output", |
michael@0 | 21 | consoleTrace: { |
michael@0 | 22 | file: "test-bug-585956-console-trace.html", |
michael@0 | 23 | fn: "window.foobar585956c", |
michael@0 | 24 | }, |
michael@0 | 25 | }], |
michael@0 | 26 | }); |
michael@0 | 27 | |
michael@0 | 28 | let node = [...result.matched][0]; |
michael@0 | 29 | ok(node, "found trace log node"); |
michael@0 | 30 | |
michael@0 | 31 | let obj = node._messageObject; |
michael@0 | 32 | ok(obj, "console.trace message object"); |
michael@0 | 33 | |
michael@0 | 34 | // The expected stack trace object. |
michael@0 | 35 | let stacktrace = [ |
michael@0 | 36 | { filename: TEST_URI, functionName: "window.foobar585956c", language: 2, lineNumber: 9 }, |
michael@0 | 37 | { filename: TEST_URI, functionName: "foobar585956b", language: 2, lineNumber: 14 }, |
michael@0 | 38 | { filename: TEST_URI, functionName: "foobar585956a", language: 2, lineNumber: 18 }, |
michael@0 | 39 | { filename: TEST_URI, functionName: "", language: 2, lineNumber: 21 } |
michael@0 | 40 | ]; |
michael@0 | 41 | |
michael@0 | 42 | ok(obj._stacktrace, "found stacktrace object"); |
michael@0 | 43 | is(obj._stacktrace.toSource(), stacktrace.toSource(), "stacktrace is correct"); |
michael@0 | 44 | isnot(node.textContent.indexOf("bug-585956"), -1, "found file name"); |
michael@0 | 45 | } |
michael@0 | 46 | } |