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 | * Tests opening inspecting variables works across scopes. |
michael@0 | 6 | */ |
michael@0 | 7 | |
michael@0 | 8 | const TAB_URL = EXAMPLE_URL + "doc_scope-variable-3.html"; |
michael@0 | 9 | |
michael@0 | 10 | function test() { |
michael@0 | 11 | Task.spawn(function() { |
michael@0 | 12 | let [tab, debuggee, panel] = yield initDebugger(TAB_URL); |
michael@0 | 13 | let win = panel.panelWin; |
michael@0 | 14 | let bubble = win.DebuggerView.VariableBubble; |
michael@0 | 15 | let tooltip = bubble._tooltip.panel; |
michael@0 | 16 | |
michael@0 | 17 | // Allow this generator function to yield first. |
michael@0 | 18 | executeSoon(() => debuggee.test()); |
michael@0 | 19 | yield waitForSourceAndCaretAndScopes(panel, ".html", 15); |
michael@0 | 20 | |
michael@0 | 21 | yield openVarPopup(panel, { line: 12, ch: 10 }); |
michael@0 | 22 | ok(true, "The variable inspection popup was shown for the real variable."); |
michael@0 | 23 | |
michael@0 | 24 | once(tooltip, "popupshown").then(() => { |
michael@0 | 25 | ok(false, "The variable inspection popup shouldn't have been opened."); |
michael@0 | 26 | }); |
michael@0 | 27 | |
michael@0 | 28 | reopenVarPopup(panel, { line: 18, ch: 10 }); |
michael@0 | 29 | yield waitForTime(1000); |
michael@0 | 30 | |
michael@0 | 31 | yield resumeDebuggerThenCloseAndFinish(panel); |
michael@0 | 32 | }); |
michael@0 | 33 | } |