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 we have the correct line selected after pretty printing. |
michael@0 | 6 | */ |
michael@0 | 7 | |
michael@0 | 8 | const TAB_URL = EXAMPLE_URL + "doc_pretty-print.html"; |
michael@0 | 9 | |
michael@0 | 10 | let gTab, gDebuggee, gPanel, gDebugger; |
michael@0 | 11 | |
michael@0 | 12 | function test() { |
michael@0 | 13 | initDebugger(TAB_URL).then(([aTab, aDebuggee, aPanel]) => { |
michael@0 | 14 | gTab = aTab; |
michael@0 | 15 | gDebuggee = aDebuggee; |
michael@0 | 16 | gPanel = aPanel; |
michael@0 | 17 | gDebugger = gPanel.panelWin; |
michael@0 | 18 | |
michael@0 | 19 | waitForSourceShown(gPanel, "code_ugly.js") |
michael@0 | 20 | .then(runCodeAndPause) |
michael@0 | 21 | .then(() => { |
michael@0 | 22 | const sourceShown = waitForSourceShown(gPanel, "code_ugly.js"); |
michael@0 | 23 | const caretUpdated = waitForCaretUpdated(gPanel, 7); |
michael@0 | 24 | const finished = promise.all([sourceShown, caretUpdated]); |
michael@0 | 25 | clickPrettyPrintButton(); |
michael@0 | 26 | return finished; |
michael@0 | 27 | }) |
michael@0 | 28 | .then(resumeDebuggerThenCloseAndFinish.bind(null, gPanel)) |
michael@0 | 29 | .then(null, aError => { |
michael@0 | 30 | ok(false, "Got an error: " + DevToolsUtils.safeErrorString(aError)); |
michael@0 | 31 | }); |
michael@0 | 32 | }); |
michael@0 | 33 | } |
michael@0 | 34 | |
michael@0 | 35 | function runCodeAndPause() { |
michael@0 | 36 | const deferred = promise.defer(); |
michael@0 | 37 | once(gDebugger.gThreadClient, "paused").then(deferred.resolve); |
michael@0 | 38 | // Have to executeSoon so that we don't pause before this function returns. |
michael@0 | 39 | executeSoon(gDebuggee.foo); |
michael@0 | 40 | return deferred.promise; |
michael@0 | 41 | } |
michael@0 | 42 | |
michael@0 | 43 | function clickPrettyPrintButton() { |
michael@0 | 44 | gDebugger.document.getElementById("pretty-print").click(); |
michael@0 | 45 | } |
michael@0 | 46 | |
michael@0 | 47 | registerCleanupFunction(function() { |
michael@0 | 48 | gTab = null; |
michael@0 | 49 | gDebuggee = null; |
michael@0 | 50 | gPanel = null; |
michael@0 | 51 | gDebugger = null; |
michael@0 | 52 | }); |