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

Side by Side Diff: LayoutTests/fast/dom/HTMLDocument/document-write-variadic.html

Issue 59693007: Get rid of custom code for HTMLDocument.write() / writeln() (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix test failures Created 7 years, 1 month 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 | LayoutTests/fast/dom/HTMLDocument/document-write-variadic-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
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <p>Check that HTMLDocument.write() / writeln() accept several string arguments.< /p>
5 <p>You should see exactly 2 'PASS' messages below.</p>
6 <script>
7 if (window.testRunner)
8 testRunner.dumpAsText();
9
10 document.write('P', 'A', 'SS', "<br>");
11 document.writeln('P', 'A', 'SS');
haraken 2013/11/07 16:00:19 You might want to add: document.writeln(null); do
Inactive 2013/11/07 16:21:13 Done.
12 </script>
13 </body>
14 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/dom/HTMLDocument/document-write-variadic-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698