aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorstephane2016-02-22 14:40:03 -0500
committerStephen Blott2016-02-23 05:55:01 +0000
commit57964b9afe36fc4290396b94b6f45ef637000ae0 (patch)
tree5b4ece5ebe18c16a0ca5bf4b99f953b50a88f75c /tests
parentefbcdea1ad25ec13d93403a3abd26da5905da732 (diff)
downloadvimium-57964b9afe36fc4290396b94b6f45ef637000ae0.tar.bz2
Workaround for the hanging part of issue #1944 "Tests fail/hang with latest PhantomJS (2.1.1)".
URL: https://github.com/philc/vimium/issues/1944
Diffstat (limited to 'tests')
-rw-r--r--tests/dom_tests/dom_tests.coffee5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/dom_tests/dom_tests.coffee b/tests/dom_tests/dom_tests.coffee
index 1d4703c1..ca73b631 100644
--- a/tests/dom_tests/dom_tests.coffee
+++ b/tests/dom_tests/dom_tests.coffee
@@ -104,7 +104,10 @@ context "Test link hints for focusing input elements correctly",
stubSettings "linkHintCharacters", "ab"
# Every HTML5 input type except for hidden. We should be able to activate all of them with link hints.
- inputTypes = ["button", "checkbox", "color", "date", "datetime", "datetime-local", "email", "file",
+ #
+ # TODO: Re-insert "color" into the inputTypes list when PhantomJS issue #13979 is fixed and integrated.
+ # Ref: https://github.com/ariya/phantomjs/issues/13979
+ inputTypes = ["button", "checkbox", "date", "datetime", "datetime-local", "email", "file",
"image", "month", "number", "password", "radio", "range", "reset", "search", "submit", "tel", "text",
"time", "url", "week"]