diff options
| author | Ramiro Araujo | 2016-11-09 13:23:48 -0300 |
|---|---|---|
| committer | Ramiro Araujo | 2016-11-09 13:23:48 -0300 |
| commit | c5d6b80cb6eae99aed461e20c99a286eaf352a2a (patch) | |
| tree | da027d1d3d93ea4639d207f12c01b4b62353be76 /tests | |
| parent | 84b3e7d65d6cd7391f5b00cb77398cb60fe245bb (diff) | |
| download | vimium-c5d6b80cb6eae99aed461e20c99a286eaf352a2a.tar.bz2 | |
treat select element as an input, setting focus to it
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/dom_tests/dom_tests.coffee | 5 |
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..68611230 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 the select element to test focus + input = document.createElement "select" + testDiv.appendChild input + inputs.push input + tearDown -> document.getElementById("test-div").innerHTML = "" |
