Parse and histogram LevelDB corruption errors.
[chromium-blink-merge.git] / third_party / webdriver / test_data / document_write_in_onload.html
bloba15fc479ea91637758db776f97612b856104633f
1 <html>
2 <head>
3 <title>Document Write In Onload</title>
4 <script>
5 function init() {
6 document.writeln('goodbye, world!');
8 </script>
9 </head>
10 <body onload="init();">
11 <p>hello world</p>
12 </body>
13 </html>