summaryrefslogtreecommitdiff
path: root/tests/qunit/suites/resources/jquery/jquery.tabIndex.test.js
blob: 98ff55081c07c52ec021488324c071c1ca45d1ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
module( 'jquery.tabIndex', QUnit.newMwEnvironment() );

test( '-- Initial check', function() {
	expect(2);

	ok( $.fn.firstTabIndex, '$.fn.firstTabIndex defined' );
	ok( $.fn.lastTabIndex, '$.fn.lastTabIndex defined' );
});

test( 'firstTabIndex', function() {
	expect(2);

	var testEnvironment =
'<form>' +
	'<input tabindex="7" />' +
	'<input tabindex="9" />' +
	'<textarea tabindex="2">Foobar</textarea>' +
	'<textarea tabindex="5">Foobar</textarea>' +
'</form>';

	var $testA = $( '<div>' ).html( testEnvironment ).appendTo( '#qunit-fixture' );
	strictEqual( $testA.firstTabIndex(), 2, 'First tabindex should be 2 within this context.' );

	var $testB = $( '<div>' );
	strictEqual( $testB.firstTabIndex(), null, 'Return null if none available.' );
});

test( 'lastTabIndex', function() {
	expect(2);

	var testEnvironment =
'<form>' +
	'<input tabindex="7" />' +
	'<input tabindex="9" />' +
	'<textarea tabindex="2">Foobar</textarea>' +
	'<textarea tabindex="5">Foobar</textarea>' +
'</form>';

	var $testA = $( '<div>' ).html( testEnvironment ).appendTo( '#qunit-fixture' );
	strictEqual( $testA.lastTabIndex(), 9, 'Last tabindex should be 9 within this context.' );

	var $testB = $( '<div>' );
	strictEqual( $testB.lastTabIndex(), null, 'Return null if none available.' );
});