chromium/third_party/blink/web_tests/fast/dom/document_write_params.html

<html>
<body>
<p>  <b>Test purpose:</b>  This tests display of multiple parameters given in document.write.
<br>
<b> Expected output: AB </b></p>

<script>
if (window.testRunner)
  testRunner.dumpAsText();
var param_one="A";
var param_two="B";
document.write(param_one,param_two);
</script>
</body>
</html>