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

Side by Side Diff: LayoutTests/fast/forms/select-autofilled.html

Issue 216923003: Add pixel test for <select> -webkit-autofil style (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: upload file again Created 6 years, 9 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 <style>
2 select {
3 width: 168px;
4 padding: 5px;
5 font-size: 16px;
6 height: 34px;
7 background: transparent;
8 }
9 </style>
10 <body>
11 <p>The background should be yellow.</p>
12 <select id = "select">
13 <option>CA</option>
14 <option>TX</option>
15 </select>
16 </body>
17 <script>
18 var select = document.getElementById('select');
19 if (window.internals)
20 window.internals.setAutofilled(select, true);
21 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698