node-attrs-test.js revision 969b149b4e3fb3eaf1371b9f1887bafea2c862e5
ArrayAssert = Y.ArrayAssert;
name: 'Y.Node get() method',
setUp: function() {
},
tearDown: function() {
delete this._testNode;
},
'should return null from empty string input': function() {
},
'should return null from unfound property': function() {
},
'should return null nodeValue': function() {
},
'should return DIV from nodeName': function() {
},
'should return UL from nodeName': function() {
},
'should return LI from nodeName': function() {
},
'should return the firstChild': function() {
},
'should return the nextSibling of the firstChild': function() {
},
'should return the nodeName of the nextSibling of the firstChild': function() {
},
'should return the nodeName of the of the lastChild': function() {
},
'should get the document node from the ownerDocument': function() {
},
'should return the OPTIONs from the SElECT': function() {
},
'should return the text of the new element': function() {
},
'should return the updated text': function() {
},
'should return the correct number of children': function() {
},
'should return zero children from empty node': function() {
},
'should return matching childNode length': function() {
},
'should return the correct tabIndex': function() {
},
'should return the correct tabIndex when not set (DIV)': function() {
},
'should return the correct tabIndex when not set (A)': function() {
},
'should return the correct tabIndex when set to -1 (A)': function() {
},
'should convert live list to static array': function() {
},
test_getters: function() {
var id = 'test-nodes',
}
}));
name: 'Y.NodeList get() method',
setUp: function() {
},
tearDown: function() {
delete this._testNodes;
},
'should return an array of tagNames from the nodelist': function() {
},
'should find the id of the first nodes\'s parentNode': function() {
},
'should find the text of the first item in children collection': function() {
},
'should convert DOM node return values to NodeList': function() {
}
}));