Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(436)

Side by Side Diff: third_party/webdriver/test_data/styledPage.html

Issue 424363004: Update third_party/webdriver/pylib to r18456 and delete test_data (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: "python" -> "pylib" Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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
OLDNEW
« no previous file with comments | « third_party/webdriver/test_data/slow_loading_iframes.html ('k') | third_party/webdriver/test_data/svgPiechart.xhtml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698