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 | * Make sure that changing the tab location URL to a page with no sources works. |
michael@0 | 6 | */ |
michael@0 | 7 | |
michael@0 | 8 | const TAB_URL = EXAMPLE_URL + "doc_recursion-stack.html"; |
michael@0 | 9 | |
michael@0 | 10 | let gTab, gDebuggee, gPanel, gDebugger; |
michael@0 | 11 | let gEditor, gSources, gFrames; |
michael@0 | 12 | |
michael@0 | 13 | function test() { |
michael@0 | 14 | initDebugger(TAB_URL).then(([aTab, aDebuggee, aPanel]) => { |
michael@0 | 15 | gTab = aTab; |
michael@0 | 16 | gDebuggee = aDebuggee; |
michael@0 | 17 | gPanel = aPanel; |
michael@0 | 18 | gDebugger = gPanel.panelWin; |
michael@0 | 19 | gEditor = gDebugger.DebuggerView.editor; |
michael@0 | 20 | gSources = gDebugger.DebuggerView.Sources; |
michael@0 | 21 | gFrames = gDebugger.DebuggerView.StackFrames; |
michael@0 | 22 | |
michael@0 | 23 | waitForSourceAndCaretAndScopes(gPanel, ".html", 14).then(testLocationChange); |
michael@0 | 24 | gDebuggee.simpleCall(); |
michael@0 | 25 | }); |
michael@0 | 26 | } |
michael@0 | 27 | |
michael@0 | 28 | function testLocationChange() { |
michael@0 | 29 | navigateActiveTabTo(gPanel, "about:blank", gDebugger.EVENTS.SOURCES_ADDED).then(() => { |
michael@0 | 30 | isnot(gDebugger.gThreadClient.state, "paused", |
michael@0 | 31 | "Should not be paused after a tab navigation."); |
michael@0 | 32 | |
michael@0 | 33 | is(gFrames.itemCount, 0, |
michael@0 | 34 | "Should have no frames."); |
michael@0 | 35 | |
michael@0 | 36 | is(gSources.itemCount, 0, |
michael@0 | 37 | "Found no entries in the sources widget."); |
michael@0 | 38 | |
michael@0 | 39 | is(gSources.selectedValue, "", |
michael@0 | 40 | "There should be no selected source value."); |
michael@0 | 41 | is(gEditor.getText().length, 0, |
michael@0 | 42 | "The source editor should not have any text displayed."); |
michael@0 | 43 | |
michael@0 | 44 | is(gDebugger.document.querySelectorAll("#sources .side-menu-widget-empty-text").length, 1, |
michael@0 | 45 | "The sources widget should now display a notice (1)."); |
michael@0 | 46 | is(gDebugger.document.querySelectorAll("#sources .side-menu-widget-empty-text")[0].getAttribute("value"), |
michael@0 | 47 | gDebugger.L10N.getStr("noSourcesText"), |
michael@0 | 48 | "The sources widget should now display a notice (2)."); |
michael@0 | 49 | |
michael@0 | 50 | closeDebuggerAndFinish(gPanel); |
michael@0 | 51 | }); |
michael@0 | 52 | } |
michael@0 | 53 | |
michael@0 | 54 | registerCleanupFunction(function() { |
michael@0 | 55 | gTab = null; |
michael@0 | 56 | gDebuggee = null; |
michael@0 | 57 | gPanel = null; |
michael@0 | 58 | gDebugger = null; |
michael@0 | 59 | gEditor = null; |
michael@0 | 60 | gSources = null; |
michael@0 | 61 | gFrames = null; |
michael@0 | 62 | }); |