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 | /* Any copyright is dedicated to the Public Domain. |
michael@0 | 2 | http://creativecommons.org/publicdomain/zero/1.0/ */ |
michael@0 | 3 | |
michael@0 | 4 | /** |
michael@0 | 5 | * Test that black boxed frames are compressed into a single frame on the stack |
michael@0 | 6 | * view when we are already paused. |
michael@0 | 7 | */ |
michael@0 | 8 | |
michael@0 | 9 | const TAB_URL = EXAMPLE_URL + "doc_blackboxing.html"; |
michael@0 | 10 | const BLACKBOXME_URL = EXAMPLE_URL + "code_blackboxing_blackboxme.js" |
michael@0 | 11 | |
michael@0 | 12 | let gTab, gDebuggee, gPanel, gDebugger; |
michael@0 | 13 | let gFrames; |
michael@0 | 14 | |
michael@0 | 15 | function test() { |
michael@0 | 16 | initDebugger(TAB_URL).then(([aTab, aDebuggee, aPanel]) => { |
michael@0 | 17 | gTab = aTab; |
michael@0 | 18 | gDebuggee = aDebuggee; |
michael@0 | 19 | gPanel = aPanel; |
michael@0 | 20 | gDebugger = gPanel.panelWin; |
michael@0 | 21 | gFrames = gDebugger.DebuggerView.StackFrames; |
michael@0 | 22 | |
michael@0 | 23 | waitForSourceAndCaretAndScopes(gPanel, ".html", 21) |
michael@0 | 24 | .then(testBlackBoxStack) |
michael@0 | 25 | .then(testBlackBoxSource) |
michael@0 | 26 | .then(() => resumeDebuggerThenCloseAndFinish(gPanel)) |
michael@0 | 27 | .then(null, aError => { |
michael@0 | 28 | ok(false, "Got an error: " + aError.message + "\n" + aError.stack); |
michael@0 | 29 | }); |
michael@0 | 30 | |
michael@0 | 31 | gDebuggee.runTest(); |
michael@0 | 32 | }); |
michael@0 | 33 | } |
michael@0 | 34 | |
michael@0 | 35 | function testBlackBoxStack() { |
michael@0 | 36 | is(gFrames.itemCount, 6, |
michael@0 | 37 | "Should get 6 frames."); |
michael@0 | 38 | is(gDebugger.document.querySelectorAll(".dbg-stackframe-black-boxed").length, 0, |
michael@0 | 39 | "And none of them are black boxed."); |
michael@0 | 40 | } |
michael@0 | 41 | |
michael@0 | 42 | function testBlackBoxSource() { |
michael@0 | 43 | return toggleBlackBoxing(gPanel, BLACKBOXME_URL).then(aSource => { |
michael@0 | 44 | ok(aSource.isBlackBoxed, "The source should be black boxed now."); |
michael@0 | 45 | |
michael@0 | 46 | is(gFrames.itemCount, 3, |
michael@0 | 47 | "Should only get 3 frames."); |
michael@0 | 48 | is(gDebugger.document.querySelectorAll(".dbg-stackframe-black-boxed").length, 1, |
michael@0 | 49 | "And one of them should be the combined black boxed frames."); |
michael@0 | 50 | }); |
michael@0 | 51 | } |
michael@0 | 52 | |
michael@0 | 53 | registerCleanupFunction(function() { |
michael@0 | 54 | gTab = null; |
michael@0 | 55 | gDebuggee = null; |
michael@0 | 56 | gPanel = null; |
michael@0 | 57 | gDebugger = null; |
michael@0 | 58 | gFrames = null; |
michael@0 | 59 | }); |