Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / parser / entity-comment-in-title.html
blobec1026b30b5e9a80ae875d52aa8c358977c645ba
1 <html>
2 <head>
3 <title>
4 &lt;!-- </title> --&gt;
5 This text should not be part of the title.
6 </title>
7 <script>
8 if (window.testRunner)
9 testRunner.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 <script>
20 // FIXME: This is only needed because of our flaky whitespace textnode handling.
21 // Once we make our whitespace text node handling deterministic, we can remove this
22 // and rebaseline the test.
23 document.body.offsetHeight;
24 </script>
25 </body>
26 </html>