OLD | NEW |
---|---|
1 var htmlallcollection = document.all; | 1 var htmlallcollection = document.all; |
2 shouldBe('htmlallcollection.toString()', "'[object HTMLAllCollection]'"); | 2 shouldBe('htmlallcollection.toString()', "'[object HTMLAllCollection]'"); |
3 shouldBeTrue('typeof htmlallcollection.tags == "function"'); | |
4 shouldBe('htmlallcollection.tags("body").length', "1"); | |
OLD | NEW |