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 the variable inspection popup on a variable which has a |
michael@0 | 6 | * simple object as the value. |
michael@0 | 7 | */ |
michael@0 | 8 | |
michael@0 | 9 | const TAB_URL = EXAMPLE_URL + "doc_frame-parameters.html"; |
michael@0 | 10 | |
michael@0 | 11 | function test() { |
michael@0 | 12 | Task.spawn(function() { |
michael@0 | 13 | let [tab, debuggee, panel] = yield initDebugger(TAB_URL); |
michael@0 | 14 | let win = panel.panelWin; |
michael@0 | 15 | let bubble = win.DebuggerView.VariableBubble; |
michael@0 | 16 | let tooltip = bubble._tooltip.panel; |
michael@0 | 17 | |
michael@0 | 18 | function verifyContents() { |
michael@0 | 19 | is(tooltip.querySelectorAll(".variables-view-container").length, 1, |
michael@0 | 20 | "There should be one variables view container added to the tooltip."); |
michael@0 | 21 | |
michael@0 | 22 | is(tooltip.querySelectorAll(".variables-view-scope[untitled]").length, 1, |
michael@0 | 23 | "There should be one scope with no header displayed."); |
michael@0 | 24 | is(tooltip.querySelectorAll(".variables-view-variable[untitled]").length, 1, |
michael@0 | 25 | "There should be one variable with no header displayed."); |
michael@0 | 26 | |
michael@0 | 27 | is(tooltip.querySelectorAll(".variables-view-property").length, 2, |
michael@0 | 28 | "There should be 2 properties displayed."); |
michael@0 | 29 | |
michael@0 | 30 | is(tooltip.querySelectorAll(".variables-view-property .name")[0].getAttribute("value"), "a", |
michael@0 | 31 | "The first property's name is correct."); |
michael@0 | 32 | is(tooltip.querySelectorAll(".variables-view-property .value")[0].getAttribute("value"), "1", |
michael@0 | 33 | "The first property's value is correct."); |
michael@0 | 34 | |
michael@0 | 35 | is(tooltip.querySelectorAll(".variables-view-property .name")[1].getAttribute("value"), "__proto__", |
michael@0 | 36 | "The second property's name is correct."); |
michael@0 | 37 | is(tooltip.querySelectorAll(".variables-view-property .value")[1].getAttribute("value"), "Object", |
michael@0 | 38 | "The second property's value is correct."); |
michael@0 | 39 | } |
michael@0 | 40 | |
michael@0 | 41 | // Allow this generator function to yield first. |
michael@0 | 42 | executeSoon(() => debuggee.start()); |
michael@0 | 43 | yield waitForSourceAndCaretAndScopes(panel, ".html", 24); |
michael@0 | 44 | |
michael@0 | 45 | // Inspect variable. |
michael@0 | 46 | yield openVarPopup(panel, { line: 16, ch: 12 }, true); |
michael@0 | 47 | verifyContents(); |
michael@0 | 48 | |
michael@0 | 49 | yield resumeDebuggerThenCloseAndFinish(panel); |
michael@0 | 50 | }); |
michael@0 | 51 | } |