| OLD | NEW |
| (Empty) |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <script src="../../js/resources/js-test-pre.js"></script> | |
| 5 </head> | |
| 6 <body> | |
| 7 <p>This test ensures that document.getItems must be case sensitive.</p> | |
| 8 <div itemscope itemtype="http://example.com/foo" id="one"></div> | |
| 9 <div itemscope itemtype="http://example.com/BAR" id="two"></div> | |
| 10 <div id="console"></div> | |
| 11 | |
| 12 <script> | |
| 13 shouldBeTrue("document.getItems('http://example.com/Foo').length == 0"); | |
| 14 shouldBeTrue("document.getItems('http://example.com/foo').length == 1"); | |
| 15 | |
| 16 shouldBeTrue("document.getItems('http://example.com/BAR').length == 1"); | |
| 17 shouldBeTrue("document.getItems('http://example.com/bar').length == 0"); | |
| 18 </script> | |
| 19 <script src="../../js/resources/js-test-post.js"></script> | |
| 20 </body> | |
| 21 </html> | |
| OLD | NEW |