blob: 47a2d0c7eab1008452c67738324c019a3c43cc60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<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>
|