test runner: added 2 tests for [5500]
This commit is contained in:
parent
6a9b73c7b9
commit
0a794ed5fc
|
@ -300,16 +300,23 @@ test("each(Function)", function() {
|
||||||
});
|
});
|
||||||
|
|
||||||
test("index(Object)", function() {
|
test("index(Object)", function() {
|
||||||
expect(8);
|
expect(10);
|
||||||
equals( $([window, document]).index(window), 0, "Check for index of elements" );
|
|
||||||
equals( $([window, document]).index(document), 1, "Check for index of elements" );
|
var elements = $([window, document]),
|
||||||
var inputElements = $('#radio1,#radio2,#check1,#check2');
|
inputElements = $('#radio1,#radio2,#check1,#check2');
|
||||||
|
|
||||||
|
equals( elements.index(window), 0, "Check for index of elements" );
|
||||||
|
equals( elements.index(document), 1, "Check for index of elements" );
|
||||||
equals( inputElements.index(document.getElementById('radio1')), 0, "Check for index of elements" );
|
equals( inputElements.index(document.getElementById('radio1')), 0, "Check for index of elements" );
|
||||||
equals( inputElements.index(document.getElementById('radio2')), 1, "Check for index of elements" );
|
equals( inputElements.index(document.getElementById('radio2')), 1, "Check for index of elements" );
|
||||||
equals( inputElements.index(document.getElementById('check1')), 2, "Check for index of elements" );
|
equals( inputElements.index(document.getElementById('check1')), 2, "Check for index of elements" );
|
||||||
equals( inputElements.index(document.getElementById('check2')), 3, "Check for index of elements" );
|
equals( inputElements.index(document.getElementById('check2')), 3, "Check for index of elements" );
|
||||||
equals( inputElements.index(window), -1, "Check for not found index" );
|
equals( inputElements.index(window), -1, "Check for not found index" );
|
||||||
equals( inputElements.index(document), -1, "Check for not found index" );
|
equals( inputElements.index(document), -1, "Check for not found index" );
|
||||||
|
|
||||||
|
// enabled since [5500]
|
||||||
|
equals( elements.index( elements ), 0, "Pass in a jQuery object" );
|
||||||
|
equals( elements.index( elements.eq(1) ), 1, "Pass in a jQuery object" );
|
||||||
});
|
});
|
||||||
|
|
||||||
test("attr(String)", function() {
|
test("attr(String)", function() {
|
||||||
|
|
Loading…
Reference in a new issue