(element)
| 178 | |
| 179 | test('activating forms', function () { |
| 180 | function getSelection (element) { |
| 181 | try { |
| 182 | if (typeof element.selectionStart === 'number') { |
| 183 | return element.value.substring(element.selectionStart, |
| 184 | element.selectionEnd); |
| 185 | } else if (document.selection && document.selection.createRange) { |
| 186 | return document.selection.createRange().text; |
| 187 | } |
| 188 | } catch (e) { |
| 189 | return null; |
| 190 | } |
| 191 | } |
| 192 | |
| 193 | var element = Form.findFirstElement('form-test-bigform'); |
| 194 | assert.equal('submit', element.id, |