Upstream version 9.37.197.0
[platform/framework/web/crosswalk.git] / src / third_party / webdriver / test_data / styledPage.html
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>"
8     }
9   </script>
10
11 </head>
12 <body>
13 <div style="height: 200px"></div>
14
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>
19
20 <div id="log"></div>
21
22 <div style="height: 4000px">Content</div>
23 </body>
24 </html>
25
26
27
28