| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <title> | 3 <title> |
| 4 <!-- </title> --> | 4 <!--</title> --> |
| 5 This text should be part of the title. | 5 This text should *not* be part of the title. |
| 6 </title> | 6 </title> |
| 7 <script> | 7 <script> |
| 8 if (window.testRunner) | 8 if (window.testRunner) |
| 9 testRunner.dumpAsText(); | 9 testRunner.dumpAsText(); |
| 10 | 10 |
| 11 window.onload = function () { | 11 window.onload = function () { |
| 12 document.getElementById('console').appendChild(document.createTextNode(documen
t.title)); | 12 document.getElementById('console').appendChild(document.createTextNode(documen
t.title)); |
| 13 } | 13 } |
| 14 </script> | 14 </script> |
| 15 </head> | 15 </head> |
| 16 <body> | 16 <body> |
| 17 <div>The title of this document is:</div> | 17 <div>The title of this document is:</div> |
| 18 <div id="console"></div> | 18 <div id="console"></div> |
| 19 </body> | 19 </body> |
| 20 </html> | 20 </html> |
| OLD | NEW |