blob: 47a2d0c7eab1008452c67738324c019a3c43cc60 [file] [log] [blame]
<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>