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

Side by Side Diff: Source/core/css/html.css

Issue 138433002: Add Autofill preview support for <select> input fields (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Initialize m_suggestedIndex in constructor 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
1 /* 1 /*
2 * The default style sheet used to render HTML. 2 * The default style sheet used to render HTML.
3 * 3 *
4 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) 4 * Copyright (C) 2000 Lars Knoll (knoll@kde.org)
5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved.
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 668 matching lines...) Expand 10 before | Expand all | Expand 10 after
679 background-color: initial; 679 background-color: initial;
680 border: initial; 680 border: initial;
681 } 681 }
682 682
683 input[type="file"] { 683 input[type="file"] {
684 align-items: baseline; 684 align-items: baseline;
685 color: inherit; 685 color: inherit;
686 text-align: start !important; 686 text-align: start !important;
687 } 687 }
688 688
689 input:-webkit-autofill, textarea:-webkit-autofill { 689 input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
690 background-color: #FAFFBD !important; 690 background-color: #FAFFBD !important;
691 background-image:none !important; 691 background-image:none !important;
692 color: #000000 !important; 692 color: #000000 !important;
693 } 693 }
694 694
695 input[type="radio"], input[type="checkbox"] { 695 input[type="radio"], input[type="checkbox"] {
696 margin: 3px 0.5ex; 696 margin: 3px 0.5ex;
697 padding: initial; 697 padding: initial;
698 background-color: initial; 698 background-color: initial;
699 border: initial; 699 border: initial;
(...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after
1165 @page { 1165 @page {
1166 /* FIXME: Define the right default values for page properties. */ 1166 /* FIXME: Define the right default values for page properties. */
1167 size: auto; 1167 size: auto;
1168 margin: auto; 1168 margin: auto;
1169 padding: 0px; 1169 padding: 0px;
1170 border-width: 0px; 1170 border-width: 0px;
1171 } 1171 }
1172 1172
1173 /* noscript is handled internally, as it depends on settings. */ 1173 /* noscript is handled internally, as it depends on settings. */
1174 1174
OLDNEW
« no previous file with comments | « LayoutTests/platform/win/fast/forms/suggested-value-expected.txt ('k') | Source/core/html/HTMLSelectElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698