2008-11-04 Anders Carlsson <andersca@apple.com>
[webkit/qt.git] / LayoutTests / fast / parser / comment-in-title.html
blob429eb9d85788037c101a738521a47e04135c8b98
1 <html>
2 <head>
3 <title>
4 <!-- </title> -->
5 This text should be part of the title.
6 </title>
7 <script>
8 if (window.layoutTestController)
9 layoutTestController.dumpAsText();
11 window.onload = function () {
12 document.getElementById('console').appendChild(document.createTextNode(document.title));
14 </script>
15 </head>
16 <body>
17 <div>The title of this document is:</div>
18 <div id="console"></div>
19 </body>
20 </html>