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

Side by Side Diff: third_party/webdriver/test_data/javascriptEnhancedForm.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 PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.or g/TR/html4/loose.dtd">
2
3 <html>
4 <head>
5 <title>Javascript Enhanced Page</title>
6 </head>
7 <body>
8 <form id="form1" action="javascriptEnhancedForm.html" method="post">
9 <p>
10 <label id="labelforusername" for="username">
11 Username: <input id="username" type="text" name="username" / >
12 <script type="text/javascript">
13 document.getElementById('username').value = 'Michael';
14 </script>
15 </label>
16 </p>
17 <p>
18 <label for="password">
19 Password: <input id="password" type="password" name="passwor d" />
20 <script type="text/javascript">
21 var z = document.getElementById('password'); setTimeout( 'try{z.focus();z.select();} catch(e) {}', 1);
22 </script>
23 </label>
24 </p>
25 <p>
26 <input type="submit" value="Submit" />
27 </p>
28 </form>
29 </body>
30 </html>
OLDNEW
« no previous file with comments | « third_party/webdriver/test_data/iframes.html ('k') | third_party/webdriver/test_data/javascriptPage.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698