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

Side by Side Diff: chrome/test/data/autofill/cc_autocomplete_off_test.html

Issue 1396923003: Autofill: Replace "save credit card" infobar with a bubble (Views only). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: defined(TOOLKIT_VIEWS) -> defined(TOOLKIT_VIEWS) && !defined(OS_MACOSX). Created 5 years, 1 month 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//EN">
2 <!-- Autofill credit card test form where autocomplete is off for the card numbe r field. -->
3 <html>
4 <head>
5 <title>Autofill Credit Card Test Form</title>
6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
7 </head>
8 <body>
9 <form id="testform" method="post">
10 <table>
11 <tbody>
12 <tr>
13 <td>
14 <label for="nameoncard">Name on Card</label>
15 </td>
16 <td>
17 <input size="40" id="CREDIT_CARD_NAME"/>
18 </td>
19 </tr>
20
21 <tr>
22 <td>
23 <label for="card_number">Card Number</label>
24 </td>
25 <td>
26 <input autocomplete="off" size="40" id="CREDIT_CARD_NUMBER" name=" card_number"/>
27 </td>
28 </tr>
29
30 <tr>
31 <td>
32 <label>Expiration Date</label>
33 </td>
34 <td>
35 <input size="2" name="ccmonth" id="CREDIT_CARD_EXP_MONTH"> <input size="4" name="ccyear" id="CREDIT_CARD_EXP_4_DIGIT_YEAR" />
36 </td>
37 </tr>
38 </tbody>
39 </table>
40 <input type="submit" value="Submit">
41 </form>
42 </body>
43 </html>
44
OLDNEW
« no previous file with comments | « chrome/test/base/test_browser_window.cc ('k') | components/autofill/core/browser/autofill_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698