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 | "use strict"; |
michael@0 | 4 | |
michael@0 | 5 | let nodeHighlighted = false; |
michael@0 | 6 | let presenter; |
michael@0 | 7 | |
michael@0 | 8 | function test() { |
michael@0 | 9 | if (!isTiltEnabled()) { |
michael@0 | 10 | info("Skipping highlight test because Tilt isn't enabled."); |
michael@0 | 11 | return; |
michael@0 | 12 | } |
michael@0 | 13 | if (!isWebGLSupported()) { |
michael@0 | 14 | info("Skipping highlight test because WebGL isn't supported."); |
michael@0 | 15 | return; |
michael@0 | 16 | } |
michael@0 | 17 | |
michael@0 | 18 | waitForExplicitFinish(); |
michael@0 | 19 | |
michael@0 | 20 | createTab(function() { |
michael@0 | 21 | createTilt({ |
michael@0 | 22 | onTiltOpen: function(instance) |
michael@0 | 23 | { |
michael@0 | 24 | presenter = instance.presenter; |
michael@0 | 25 | Services.obs.addObserver(whenHighlighting, HIGHLIGHTING, false); |
michael@0 | 26 | |
michael@0 | 27 | presenter._onInitializationFinished = function() { |
michael@0 | 28 | nodeHighlighted = true; |
michael@0 | 29 | presenter.highlightNodeAt.apply(this, getPickablePoint(presenter)); |
michael@0 | 30 | }; |
michael@0 | 31 | } |
michael@0 | 32 | }, false, function suddenDeath() |
michael@0 | 33 | { |
michael@0 | 34 | info("Tilt could not be initialized properly."); |
michael@0 | 35 | cleanup(); |
michael@0 | 36 | }); |
michael@0 | 37 | }); |
michael@0 | 38 | } |
michael@0 | 39 | |
michael@0 | 40 | function whenHighlighting() { |
michael@0 | 41 | ok(presenter._currentSelection > 0, |
michael@0 | 42 | "Highlighting a node didn't work properly."); |
michael@0 | 43 | ok(!presenter._highlight.disabled, |
michael@0 | 44 | "After highlighting a node, it should be highlighted. D'oh."); |
michael@0 | 45 | |
michael@0 | 46 | executeSoon(function() { |
michael@0 | 47 | Services.obs.removeObserver(whenHighlighting, HIGHLIGHTING); |
michael@0 | 48 | Services.obs.addObserver(whenUnhighlighting, UNHIGHLIGHTING, false); |
michael@0 | 49 | presenter.highlightNode(null); |
michael@0 | 50 | }); |
michael@0 | 51 | } |
michael@0 | 52 | |
michael@0 | 53 | function whenUnhighlighting() { |
michael@0 | 54 | ok(presenter._currentSelection < 0, |
michael@0 | 55 | "Unhighlighting a should remove the current selection."); |
michael@0 | 56 | ok(presenter._highlight.disabled, |
michael@0 | 57 | "After unhighlighting a node, it shouldn't be highlighted anymore. D'oh."); |
michael@0 | 58 | |
michael@0 | 59 | executeSoon(function() { |
michael@0 | 60 | Services.obs.removeObserver(whenUnhighlighting, UNHIGHLIGHTING); |
michael@0 | 61 | Services.obs.addObserver(cleanup, DESTROYED, false); |
michael@0 | 62 | Tilt.destroy(Tilt.currentWindowId); |
michael@0 | 63 | }); |
michael@0 | 64 | } |
michael@0 | 65 | |
michael@0 | 66 | function cleanup() { |
michael@0 | 67 | if (nodeHighlighted) { Services.obs.removeObserver(cleanup, DESTROYED); } |
michael@0 | 68 | gBrowser.removeCurrentTab(); |
michael@0 | 69 | finish(); |
michael@0 | 70 | } |