haikuwebkit/LayoutTests/fast/dom/document_write_params.html

16 lines
307 B
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>