aboutsummaryrefslogtreecommitdiff
path: root/node_modules/selenium-webdriver/lib/test/data/document_write_in_onload.html
blob: a15fc479ea91637758db776f97612b856104633f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<html>
<head>
  <title>Document Write In Onload</title>
  <script>
    function init() {
      document.writeln('goodbye, world!');
    }
  </script>
</head>
<body onload="init();">
<p>hello world</p>
</body>
</html>