From ca32f08966f1b51fcb19460f0996bb0c4048e6fe Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Sat, 3 Dec 2011 13:29:22 +0100 Subject: Update to MediaWiki 1.18.0 * also update ArchLinux skin to chagnes in MonoBook * Use only css to hide our menu bar when printing --- .../suites/resources/jquery/jquery.tabIndex.js | 50 ++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 tests/qunit/suites/resources/jquery/jquery.tabIndex.js (limited to 'tests/qunit/suites/resources/jquery/jquery.tabIndex.js') diff --git a/tests/qunit/suites/resources/jquery/jquery.tabIndex.js b/tests/qunit/suites/resources/jquery/jquery.tabIndex.js new file mode 100644 index 00000000..1ff81e58 --- /dev/null +++ b/tests/qunit/suites/resources/jquery/jquery.tabIndex.js @@ -0,0 +1,50 @@ +module( 'jquery.tabIndex.js' ); + +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 = +'
' + + '' + + '' + + '' + + '' + +'
'; + + var $testA = $( '
' ).html( testEnvironment ).appendTo( 'body' ); + strictEqual( $testA.firstTabIndex(), 2, 'First tabindex should be 2 within this context.' ); + + var $testB = $( '
' ); + strictEqual( $testB.firstTabIndex(), null, 'Return null if none available.' ); + + // Clean up + $testA.add( $testB ).remove(); +}); + +test( 'lastTabIndex', function() { + expect(2); + + var testEnvironment = +'
' + + '' + + '' + + '' + + '' + +'
'; + + var $testA = $( '
' ).html( testEnvironment ).appendTo( 'body' ); + strictEqual( $testA.lastTabIndex(), 9, 'Last tabindex should be 9 within this context.' ); + + var $testB = $( '
' ); + strictEqual( $testB.lastTabIndex(), null, 'Return null if none available.' ); + + // Clean up + $testA.add( $testB ).remove(); +}); -- cgit v1.2.3-54-g00ecf