Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(82)

Side by Side Diff: third_party/WebKit/LayoutTests/fast/parser/comment-in-title.html

Issue 2101523002: Make HTML tree builder simulator switch modes at HTML integration points (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix? MSVC unsigned/signed complaints. Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698