| OLD | NEW |
| (Empty) |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <script src="../../js/resources/js-test-pre.js"></script> | |
| 5 <script src="resources/microdata-common.js"></script> | |
| 6 </head> | |
| 7 <body> | |
| 8 <p>This test ensures that namedItem must be case sensitive.</p> | |
| 9 <div id="console"></div> | |
| 10 <script> | |
| 11 var element = createElement('div', {itemscope: 'itemscope'}, '<div itemprop="foo
"></div><div itemprop="bar"><div itemprop="FOO"></div><div itemprop="foo FOo foo
"></div></div><div itemprop="baz qux"></div>'); | |
| 12 | |
| 13 shouldBe("element.properties.namedItem('foo').length", '2'); | |
| 14 shouldBe("element.properties.namedItem('FOO').length", '1'); | |
| 15 shouldBe("element.properties.namedItem('FOo').length", '1'); | |
| 16 | |
| 17 shouldBe("element.properties.namedItem('foo')[0]", 'element.firstChild'); | |
| 18 shouldBe("element.properties.namedItem('foo')[1]", 'element.childNodes[1].lastCh
ild'); | |
| 19 shouldBe("element.properties.namedItem('FOO')[0]", 'element.childNodes[1].firstC
hild'); | |
| 20 shouldBe("element.properties.namedItem('FOo')[0]", 'element.childNodes[1].lastCh
ild'); | |
| 21 debug(''); | |
| 22 | |
| 23 shouldBe("element.properties['foo'].length", '2'); | |
| 24 shouldBe("element.properties['FOO'].length", '1'); | |
| 25 shouldBe("element.properties['FOo'].length", '1'); | |
| 26 | |
| 27 shouldBe("element.properties['foo'][0]", 'element.firstChild'); | |
| 28 shouldBe("element.properties['foo'][1]", 'element.childNodes[1].lastChild'); | |
| 29 shouldBe("element.properties['FOO'][0]", 'element.childNodes[1].firstChild'); | |
| 30 shouldBe("element.properties['FOo'][0]", 'element.childNodes[1].lastChild'); | |
| 31 | |
| 32 </script> | |
| 33 <script src="../../js/resources/js-test-post.js"></script> | |
| 34 </body> | |
| 35 </html> | |
| OLD | NEW |