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

Side by Side Diff: chrome/test/data/password/form_and_link.html

Issue 297693002: Tests for "WebView: speed up user gesture notification for GestureTap" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Limit test to Aura Created 6 years, 7 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 | Annotate | Revision Log
OLDNEW
1 <html> 1 <html>
2 <head>
3 <style>
4 /* The submit button's position and size is fixed, so that it's easy to specify
5 * tap/click coordinates for it. */
6 #input_submit_button {
7 top: 100px;
8 left: 0px;
9 position: absolute;
10 height: 300px;
11 width: 700px;
12 }
13 </style>
14 </head>
2 <body> 15 <body>
3 <form method="POST" action="done.html" id="testform"> 16 <!-- Use GET, so that the password is visible in the URL after submitting. -->
17 <form method="GET" action="done.html" id="testform">
4 <input type="text" id="username_field" name="username_field"> 18 <input type="text" id="username_field" name="username_field">
5 <input type="password" id="password_field" name="password_field"> 19 <input type="password" id="password_field" name="password_field">
6 <input type="submit" id="input_submit_button" name="input_submit_button"> 20 <input type="submit" id="input_submit_button">
7 </form> 21 </form>
8 <a href="done.html" id="testlink" target="_blank">Link</a> 22 <a href="done.html" id="testlink" target="_blank">Link</a>
9 </body> 23 </body>
10 </html> 24 </html>
OLDNEW
« no previous file with comments | « chrome/browser/password_manager/password_manager_browsertest.cc ('k') | content/public/test/browser_test_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698