Wed, 31 Dec 2014 07:53:36 +0100
Correct small whitespace inconsistency, lost while renaming variables.
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 | let contentDocument = presenter.contentWindow.document; |
michael@0 | 29 | let div = contentDocument.getElementById("first-law"); |
michael@0 | 30 | |
michael@0 | 31 | nodeHighlighted = true; |
michael@0 | 32 | presenter.highlightNode(div, "moveIntoView"); |
michael@0 | 33 | }; |
michael@0 | 34 | } |
michael@0 | 35 | }, false, function suddenDeath() |
michael@0 | 36 | { |
michael@0 | 37 | info("Tilt could not be initialized properly."); |
michael@0 | 38 | cleanup(); |
michael@0 | 39 | }); |
michael@0 | 40 | }); |
michael@0 | 41 | } |
michael@0 | 42 | |
michael@0 | 43 | function whenHighlighting() { |
michael@0 | 44 | ok(presenter._currentSelection > 0, |
michael@0 | 45 | "Highlighting a node didn't work properly."); |
michael@0 | 46 | ok(!presenter._highlight.disabled, |
michael@0 | 47 | "After highlighting a node, it should be highlighted. D'oh."); |
michael@0 | 48 | ok(!presenter.controller.arcball._resetInProgress, |
michael@0 | 49 | "Highlighting a node that's already visible shouldn't trigger a reset."); |
michael@0 | 50 | |
michael@0 | 51 | executeSoon(function() { |
michael@0 | 52 | Services.obs.removeObserver(whenHighlighting, HIGHLIGHTING); |
michael@0 | 53 | Services.obs.addObserver(whenUnhighlighting, UNHIGHLIGHTING, false); |
michael@0 | 54 | presenter.highlightNode(null); |
michael@0 | 55 | }); |
michael@0 | 56 | } |
michael@0 | 57 | |
michael@0 | 58 | function whenUnhighlighting() { |
michael@0 | 59 | ok(presenter._currentSelection < 0, |
michael@0 | 60 | "Unhighlighting a should remove the current selection."); |
michael@0 | 61 | ok(presenter._highlight.disabled, |
michael@0 | 62 | "After unhighlighting a node, it shouldn't be highlighted anymore. D'oh."); |
michael@0 | 63 | |
michael@0 | 64 | executeSoon(function() { |
michael@0 | 65 | Services.obs.removeObserver(whenUnhighlighting, UNHIGHLIGHTING); |
michael@0 | 66 | Services.obs.addObserver(cleanup, DESTROYED, false); |
michael@0 | 67 | Tilt.destroy(Tilt.currentWindowId); |
michael@0 | 68 | }); |
michael@0 | 69 | } |
michael@0 | 70 | |
michael@0 | 71 | function cleanup() { |
michael@0 | 72 | if (nodeHighlighted) { Services.obs.removeObserver(cleanup, DESTROYED); } |
michael@0 | 73 | gBrowser.removeCurrentTab(); |
michael@0 | 74 | finish(); |
michael@0 | 75 | } |