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 the right text shows when the page has no sources. |
michael@0 | 6 | */ |
michael@0 | 7 | |
michael@0 | 8 | const TAB_URL = EXAMPLE_URL + "doc_no-page-sources.html"; |
michael@0 | 9 | |
michael@0 | 10 | let gTab, gDebuggee, gPanel, gDebugger; |
michael@0 | 11 | let gEditor, gSources; |
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 | |
michael@0 | 22 | reloadActiveTab(gPanel, gDebugger.EVENTS.SOURCES_ADDED) |
michael@0 | 23 | .then(testSourcesEmptyText) |
michael@0 | 24 | .then(() => closeDebuggerAndFinish(gPanel)) |
michael@0 | 25 | .then(null, aError => { |
michael@0 | 26 | ok(false, "Got an error: " + aError.message + "\n" + aError.stack); |
michael@0 | 27 | }); |
michael@0 | 28 | }); |
michael@0 | 29 | } |
michael@0 | 30 | |
michael@0 | 31 | function testSourcesEmptyText() { |
michael@0 | 32 | is(gSources.itemCount, 0, |
michael@0 | 33 | "Found no entries in the sources widget."); |
michael@0 | 34 | |
michael@0 | 35 | is(gEditor.getText().length, 0, |
michael@0 | 36 | "The source editor should not have any text displayed."); |
michael@0 | 37 | |
michael@0 | 38 | is(gDebugger.document.querySelector("#sources .side-menu-widget-empty-text").getAttribute("value"), |
michael@0 | 39 | gDebugger.L10N.getStr("noSourcesText"), |
michael@0 | 40 | "The sources widget should now display 'This page has no sources'."); |
michael@0 | 41 | } |
michael@0 | 42 | |
michael@0 | 43 | registerCleanupFunction(function() { |
michael@0 | 44 | gTab = null; |
michael@0 | 45 | gDebuggee = null; |
michael@0 | 46 | gPanel = null; |
michael@0 | 47 | gDebugger = null; |
michael@0 | 48 | gEditor = null; |
michael@0 | 49 | gSources = null; |
michael@0 | 50 | }); |