| OLD | NEW |
| 1 <!-- this comment should not become the documentElement, | 1 <!-- this comment should not become the documentElement, |
| 2 if it does then the page will be blank --> | 2 if it does then the page will be blank --> |
| 3 <html> | 3 <html> |
| 4 <body> | 4 <body> |
| 5 <script> | 5 <script> |
| 6 if (document.documentElement.nodeType == Node.ELEMENT_NODE) | 6 if (document.documentElement.nodeType == Node.ELEMENT_NODE) |
| 7 document.write("SUCESS"); | 7 document.write("SUCCESS"); |
| 8 else | 8 else |
| 9 document.write("FAIL"); | 9 document.write("FAIL"); |
| 10 </script> | 10 </script> |
| 11 </body> | 11 </body> |
| 12 </html> | 12 </html> |
| OLD | NEW |