- add sources.
[platform/framework/web/crosswalk.git] / src / third_party / webdriver / test_data / document_write_in_onload.html
1 <html>
2 <head>
3   <title>Document Write In Onload</title>
4   <script>
5     function init() {
6       document.writeln('goodbye, world!');
7     }
8   </script>
9 </head>
10 <body onload="init();">
11 <p>hello world</p>
12 </body>
13 </html>