Chromium Code Reviews| OLD | NEW |
|---|---|
| (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> | |
| OLD | NEW |