Home | History | Annotate | Download | only in NodeList
      1 This tests that items in a NodeList can be retrieved directly by calling as a function with an integral index parameter, starting from 0.
      2 It means NodeList[0] and NodeList(0) both work.
      3 
      4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
      5 
      6 
      7 PASS nodeList[0] is nodeList(0)
      8 PASS !nodeList[nodeList.length] is !nodeList(nodeList.length)
      9 PASS successfullyParsed is true
     10 
     11 TEST COMPLETE
     12 
     13