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>Microdata properties collection simple test.</p> | |
9 <div id="console"></div> | |
10 <script> | |
11 var element = createElement('div', {}); | |
12 | |
13 debug("<br>The properties property must be defined."); | |
14 shouldBeDefined("element.properties"); | |
15 | |
16 debug("<br>The properties property must return a HTMLPropertiesCollection object
."); | |
17 shouldBeTrue("element.properties == '[object HTMLPropertiesCollection]'"); | |
18 | |
19 </script> | |
20 <script src="../../js/resources/js-test-post.js"></script> | |
21 </body> | |
22 </html> | |
OLD | NEW |