Cleanup a couple of consts left un-renamed.
[chromium-blink-merge.git] / third_party / webdriver / test_data / styledPage.html
blob30810f0913495f203a8ebb71b0ef096cb6d12035
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Styled Page</title>
5 <script>
6 function log(message) {
7 document.getElementById('log').innerHTML = "<p>" + message + "</p>"
9 </script>
11 </head>
12 <body>
13 <div style="height: 200px"></div>
15 <form action="#" method="get" onsubmit="return false;">
16 <input name="searchBox">
17 <input type="submit" name="btn" style="padding-top: 4px; padding-bottom: 4px" value="Search" onclick="log('click');">
18 </form>
20 <div id="log"></div>
22 <div style="height: 4000px">Content</div>
23 </body>
24 </html>