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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/textarea/textarea-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 textarea { 3 textarea {
4 color: darkGray; 4 color: #757575;
5 } 5 }
6 6
7 .red { 7 .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 font-weight: bold; 13 font-weight: bold;
14 font-size: 16px; 14 font-size: 16px;
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 ::placeholder: 48 ::placeholder:
49 <textarea class="blue">text</textarea> 49 <textarea class="blue">text</textarea>
50 <textarea class="blue" disabled>disabled text</textarea> 50 <textarea class="blue" disabled>disabled text</textarea>
51 </div> 51 </div>
52 52
53 <div> 53 <div>
54 Both: 54 Both:
55 <textarea class="prefixed-unprefixed">unprefixed</textarea> 55 <textarea class="prefixed-unprefixed">unprefixed</textarea>
56 <textarea class="unprefixed-prefixed">prefixed</textarea> 56 <textarea class="unprefixed-prefixed">prefixed</textarea>
57 </div> 57 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698