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 | // Bug 570760 - Make ctrl-f and / focus the search box in the add-ons manager |
michael@0 | 6 | |
michael@0 | 7 | var gManagerWindow; |
michael@0 | 8 | var focusCount = 0; |
michael@0 | 9 | |
michael@0 | 10 | function test() { |
michael@0 | 11 | waitForExplicitFinish(); |
michael@0 | 12 | |
michael@0 | 13 | open_manager(null, function(aWindow) { |
michael@0 | 14 | gManagerWindow = aWindow; |
michael@0 | 15 | |
michael@0 | 16 | var searchBox = gManagerWindow.document.getElementById("header-search"); |
michael@0 | 17 | function focusHandler() { |
michael@0 | 18 | searchBox.blur(); |
michael@0 | 19 | focusCount++; |
michael@0 | 20 | } |
michael@0 | 21 | searchBox.addEventListener("focus", focusHandler); |
michael@0 | 22 | f_key_test(); |
michael@0 | 23 | slash_key_test(); |
michael@0 | 24 | searchBox.removeEventListener("focus", focusHandler); |
michael@0 | 25 | end_test(); |
michael@0 | 26 | }); |
michael@0 | 27 | } |
michael@0 | 28 | |
michael@0 | 29 | function end_test() { |
michael@0 | 30 | close_manager(gManagerWindow, finish); |
michael@0 | 31 | } |
michael@0 | 32 | |
michael@0 | 33 | function f_key_test() { |
michael@0 | 34 | EventUtils.synthesizeKey("f", { accelKey: true }, gManagerWindow); |
michael@0 | 35 | is(focusCount, 1, "Search box should have been focused due to the f key"); |
michael@0 | 36 | } |
michael@0 | 37 | |
michael@0 | 38 | function slash_key_test() { |
michael@0 | 39 | EventUtils.synthesizeKey("/", { }, gManagerWindow); |
michael@0 | 40 | is(focusCount, 2, "Search box should have been focused due to the / key"); |
michael@0 | 41 | } |