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

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

Issue 152493003: Remove all usage of -webkit-*gradient inside blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 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 | Annotate | Revision Log
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 897 matching lines...) Expand 10 before | Expand all | Expand 10 after
908 908
909 meter::-webkit-meter-inner-element { 909 meter::-webkit-meter-inner-element {
910 -webkit-appearance: inherit; 910 -webkit-appearance: inherit;
911 box-sizing: inherit; 911 box-sizing: inherit;
912 -webkit-user-modify: read-only !important; 912 -webkit-user-modify: read-only !important;
913 height: 100%; 913 height: 100%;
914 width: 100%; 914 width: 100%;
915 } 915 }
916 916
917 meter::-webkit-meter-bar { 917 meter::-webkit-meter-bar {
918 background: -webkit-gradient(linear, left top, left bottom, from(#ddd), to(# ddd), color-stop(0.20, #eee), color-stop(0.45, #ccc), color-stop(0.55, #ccc)); 918 background: linear-gradient(to bottom, #ddd, #eee 20%, #ccc 45%, #ccc 55%, # ddd);
919 height: 100%; 919 height: 100%;
920 width: 100%; 920 width: 100%;
921 -webkit-user-modify: read-only !important; 921 -webkit-user-modify: read-only !important;
922 box-sizing: border-box; 922 box-sizing: border-box;
923 } 923 }
924 924
925 meter::-webkit-meter-optimum-value { 925 meter::-webkit-meter-optimum-value {
926 background: -webkit-gradient(linear, left top, left bottom, from(#ad7), to(# ad7), color-stop(0.20, #cea), color-stop(0.45, #7a3), color-stop(0.55, #7a3)); 926 background: linear-gradient(to bottom, #ad7, #cea 20%, #7a3 45%, #7a3 55%, # ad7);
927 height: 100%; 927 height: 100%;
928 -webkit-user-modify: read-only !important; 928 -webkit-user-modify: read-only !important;
929 box-sizing: border-box; 929 box-sizing: border-box;
930 } 930 }
931 931
932 meter::-webkit-meter-suboptimum-value { 932 meter::-webkit-meter-suboptimum-value {
933 background: -webkit-gradient(linear, left top, left bottom, from(#fe7), to(# fe7), color-stop(0.20, #ffc), color-stop(0.45, #db3), color-stop(0.55, #db3)); 933 background: linear-gradient(to bottom, #fe7, #ffc 20%, #db3 45%, #db3 55%, # fe7);
934 height: 100%; 934 height: 100%;
935 -webkit-user-modify: read-only !important; 935 -webkit-user-modify: read-only !important;
936 box-sizing: border-box; 936 box-sizing: border-box;
937 } 937 }
938 938
939 meter::-webkit-meter-even-less-good-value { 939 meter::-webkit-meter-even-less-good-value {
940 background: -webkit-gradient(linear, left top, left bottom, from(#f77), to(# f77), color-stop(0.20, #fcc), color-stop(0.45, #d44), color-stop(0.55, #d44)); 940 background: linear-gradient(to bottom, #f77, #fcc 20%, #d44 45%, #d44 55%, # f77);
941 height: 100%; 941 height: 100%;
942 -webkit-user-modify: read-only !important; 942 -webkit-user-modify: read-only !important;
943 box-sizing: border-box; 943 box-sizing: border-box;
944 } 944 }
945 945
946 /* progress */ 946 /* progress */
947 947
948 progress { 948 progress {
949 -webkit-appearance: progress-bar; 949 -webkit-appearance: progress-bar;
950 box-sizing: border-box; 950 box-sizing: border-box;
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
1151 @page { 1151 @page {
1152 /* FIXME: Define the right default values for page properties. */ 1152 /* FIXME: Define the right default values for page properties. */
1153 size: auto; 1153 size: auto;
1154 margin: auto; 1154 margin: auto;
1155 padding: 0px; 1155 padding: 0px;
1156 border-width: 0px; 1156 border-width: 0px;
1157 } 1157 }
1158 1158
1159 /* noscript is handled internally, as it depends on settings. */ 1159 /* noscript is handled internally, as it depends on settings. */
1160 1160
OLDNEW
« no previous file with comments | « no previous file | Source/devtools/front_end/TimelinePresentationModel.js » ('j') | Source/devtools/front_end/dataGrid.css » ('J')

Powered by Google App Engine
This is Rietveld 408576698