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

Unified 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/dom/HTMLDocument/document-write-variadic.html
diff --git a/LayoutTests/fast/dom/HTMLDocument/document-write-variadic.html b/LayoutTests/fast/dom/HTMLDocument/document-write-variadic.html
new file mode 100644
index 0000000000000000000000000000000000000000..8cf5055b83494faf629be4a39775f2d616650847
--- /dev/null
+++ b/LayoutTests/fast/dom/HTMLDocument/document-write-variadic.html
@@ -0,0 +1,14 @@
+<!DOCTYPE html>
+<html>
+<body>
+<p>Check that HTMLDocument.write() / writeln() accept several string arguments.</p>
+<p>You should see exactly 2 'PASS' messages below.</p>
+<script>
+if (window.testRunner)
+ testRunner.dumpAsText();
+
+document.write('P', 'A', 'SS', "<br>");
+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.
+</script>
+</body>
+</html>
« 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