OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script src="../../resources/js-test.js"></script> | 3 <script src="../../resources/js-test.js"></script> |
4 </head> | 4 </head> |
5 <body> | 5 <body> |
6 <div id="element" name="element_name"></div> | 6 <div id="element" name="element_name"></div> |
7 <script> | 7 <script> |
8 description('This test checks that all but a handful of dom constructors throw e
xceptions, and the rest return reasonable objects. It also tests that those cons
tructors have higher precedence than a document element with the same ID or name
.'); | 8 description('This test checks that all but a handful of dom constructors throw e
xceptions, and the rest return reasonable objects. It also tests that those cons
tructors have higher precedence than a document element with the same ID or name
.'); |
9 | 9 |
10 var element = document.getElementById("element"); | 10 var element = document.getElementById("element"); |
11 | 11 |
12 // These objects should throw an exception when their constructor is called | 12 // These objects should throw an exception when their constructor is called |
13 // with no arguments. (Some of them may have working constructors that require | 13 // with no arguments. (Some of them may have working constructors that require |
14 // arguments to be valid.) | 14 // arguments to be valid.) |
15 var objects_exception = [ | 15 var objects_exception = [ |
16 'Attr', | 16 'Attr', |
17 'CharacterData', | 17 'CharacterData', |
18 'CDATASection', | 18 'CDATASection', |
19 'Document', | 19 'Document', |
20 'DocumentType', | 20 'DocumentType', |
21 'Element', | 21 'Element', |
22 'Entity', | |
23 'EventTarget', | 22 'EventTarget', |
24 'HTMLDocument', | 23 'HTMLDocument', |
25 'Node', | 24 'Node', |
26 'Notation', | 25 'Notation', |
27 'ProcessingInstruction', | 26 'ProcessingInstruction', |
28 'HTMLAllCollection', | 27 'HTMLAllCollection', |
29 'HTMLAnchorElement', | 28 'HTMLAnchorElement', |
30 'HTMLAppletElement', | 29 'HTMLAppletElement', |
31 'HTMLAreaElement', | 30 'HTMLAreaElement', |
32 'HTMLBaseElement', | 31 'HTMLBaseElement', |
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
207 "'[object " + objects_different_constructor[obj] + "]'"); | 206 "'[object " + objects_different_constructor[obj] + "]'"); |
208 element.id = "element"; | 207 element.id = "element"; |
209 element.name = obj; | 208 element.name = obj; |
210 shouldBe("TryAllocate('" + obj + "')", | 209 shouldBe("TryAllocate('" + obj + "')", |
211 "'[object " + objects_different_constructor[obj] + "]'"); | 210 "'[object " + objects_different_constructor[obj] + "]'"); |
212 element.name = "element_name"; | 211 element.name = "element_name"; |
213 } | 212 } |
214 </script> | 213 </script> |
215 </body> | 214 </body> |
216 </html> | 215 </html> |
OLD | NEW |