aboutsummaryrefslogtreecommitdiffstats
path: root/tests/dom_tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests/dom_tests')
-rw-r--r--tests/dom_tests/dom_tests.coffee5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/dom_tests/dom_tests.coffee b/tests/dom_tests/dom_tests.coffee
index eab47546..9088fe30 100644
--- a/tests/dom_tests/dom_tests.coffee
+++ b/tests/dom_tests/dom_tests.coffee
@@ -188,6 +188,11 @@ context "Test link hints for focusing input elements correctly",
testDiv.appendChild input
inputs.push input
+ # Manually add also a select element to test focus.
+ input = document.createElement "select"
+ testDiv.appendChild input
+ inputs.push input
+
tearDown ->
document.getElementById("test-div").innerHTML = ""