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 | function test() { |
michael@0 | 5 | waitForExplicitFinish(); |
michael@0 | 6 | |
michael@0 | 7 | newWindowWithTabView(function (win) { |
michael@0 | 8 | let cw = win.TabView.getContentWindow(); |
michael@0 | 9 | |
michael@0 | 10 | registerCleanupFunction(function () { |
michael@0 | 11 | cw.gPrefBranch.clearUserPref("animate_zoom"); |
michael@0 | 12 | win.close(); |
michael@0 | 13 | }); |
michael@0 | 14 | |
michael@0 | 15 | cw.gPrefBranch.setBoolPref("animate_zoom", false); |
michael@0 | 16 | |
michael@0 | 17 | let groupItem = cw.GroupItems.groupItems[0]; |
michael@0 | 18 | let shield = groupItem.$titleShield[0]; |
michael@0 | 19 | let keys = ["RETURN", "ESCAPE"]; |
michael@0 | 20 | |
michael@0 | 21 | ok(win.TabView.isVisible(), "tabview is visible"); |
michael@0 | 22 | |
michael@0 | 23 | let simulateKeyPress = function () { |
michael@0 | 24 | let key = keys.shift(); |
michael@0 | 25 | |
michael@0 | 26 | if (!key) { |
michael@0 | 27 | ok(win.TabView.isVisible(), "tabview is still visible"); |
michael@0 | 28 | finish(); |
michael@0 | 29 | return; |
michael@0 | 30 | } |
michael@0 | 31 | |
michael@0 | 32 | EventUtils.synthesizeMouseAtCenter(shield, {}, cw); |
michael@0 | 33 | EventUtils.synthesizeKey("VK_" + key, {}, cw); |
michael@0 | 34 | |
michael@0 | 35 | executeSoon(function () { |
michael@0 | 36 | ok(win.TabView.isVisible(), "tabview is still visible [" + key + "]"); |
michael@0 | 37 | simulateKeyPress(); |
michael@0 | 38 | }); |
michael@0 | 39 | } |
michael@0 | 40 | |
michael@0 | 41 | SimpleTest.waitForFocus(simulateKeyPress, cw); |
michael@0 | 42 | }); |
michael@0 | 43 | } |