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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/dom/comment-dom-node.html

Issue 2260813003: Fix spelling in fast/dom/comment-dom-node.html. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove extraneous expectation Created 4 years, 4 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/dom/comment-dom-node-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html> 1 <html>
2 <body> 2 <body>
3 <div id="test"><!--SUCESS--></div> 3 <div id="test"><!--SUCCESS--></div>
4 <script> 4 <script>
5 if (window.testRunner) 5 if (window.testRunner)
6 testRunner.dumpAsText(); 6 testRunner.dumpAsText();
7 x = document.getElementById("test").firstChild; 7 x = document.getElementById("test").firstChild;
8 if (x && x.nodeType == Node.COMMENT_NODE) 8 if (x && x.nodeType == Node.COMMENT_NODE)
9 document.write(x.nodeValue); 9 document.write(x.nodeValue);
10 else 10 else
11 document.write("FAIL"); 11 document.write("FAIL");
12 </script> 12 </script>
13 </body> 13 </body>
14 </html> 14 </html>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/dom/comment-dom-node-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698