Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / document_write_params.html
blob47a2d0c7eab1008452c67738324c019a3c43cc60
1 <html>
2 <body>
3 <p> <b>Test purpose:</b> This tests display of multiple parameters given in document.write.
4 <br>
5 <b> Expected output: AB </b></p>
7 <script>
8 if (window.testRunner)
9 testRunner.dumpAsText();
10 var param_one="A";
11 var param_two="B";
12 document.write(param_one,param_two);
13 </script>
14 </body>
15 </html>