OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script> | 3 <script> |
4 | 4 |
5 function onload() | 5 function onload() |
6 { | 6 { |
7 if (window.testRunner) | 7 if (window.testRunner) |
8 testRunner.dumpAsText(); | 8 testRunner.dumpAsText(); |
9 document.appendChild(document.createElement()); | 9 document.appendChild(document.createElement('x')); |
10 } | 10 } |
11 | 11 |
12 </script> | 12 </script> |
13 </head> | 13 </head> |
14 | 14 |
15 <body onload="onload()"> | 15 <body onload="onload()"> |
16 <p> | 16 <p> |
17 This tests that we are getting the correct message for DOM Exception 3: HIERARCH
Y_REQUEST_ERR. | 17 This tests that we are getting the correct message for DOM Exception 3: HIERARCH
Y_REQUEST_ERR. |
18 </p> | 18 </p> |
19 | 19 |
20 </body> | 20 </body> |
21 </html> | 21 </html> |
OLD | NEW |