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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/text/placeholder-pseudo-style-expected.html

Issue 1636073006: Placeholder style should meet WCAG contrast ratio guidelines (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebaseline tests Created 3 years, 11 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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <style> 2 <style>
3 input { 3 input {
4 color: darkGray; 4 color: #757575;
5 } 5 }
6 6
7 input.red { 7 input.red {
8 color: rgb(100, 0, 0); 8 color: rgb(100, 0, 0);
9 } 9 }
10 10
11 .blue { 11 .blue {
12 color: blue; 12 color: blue;
13 } 13 }
14 14
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 <input class="blue" type="search" value="search"> 48 <input class="blue" type="search" value="search">
49 <input class="blue" type="text" value="password"> 49 <input class="blue" type="text" value="password">
50 <input class="blue" disabled value="disabled text"> 50 <input class="blue" disabled value="disabled text">
51 </div> 51 </div>
52 52
53 <div> 53 <div>
54 Both: 54 Both:
55 <input class="prefixed-unprefixed" value="unprefixed"> 55 <input class="prefixed-unprefixed" value="unprefixed">
56 <input class="unprefixed-prefixed" value="prefixed"> 56 <input class="unprefixed-prefixed" value="prefixed">
57 </div> 57 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698