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

Side by Side Diff: Source/devtools/front_end/CSSMetadata.js

Issue 16357011: Remove support for -webkit-color-correction (which we've never supported on (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: resolve merge conflicts, obey brace style changes Created 7 years, 6 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
« no previous file with comments | « Source/core/svg/graphics/filters/SVGFEImage.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Nikita Vasilyev. All rights reserved. 2 * Copyright (C) 2010 Nikita Vasilyev. All rights reserved.
3 * Copyright (C) 2010 Joseph Pecoraro. All rights reserved. 3 * Copyright (C) 2010 Joseph Pecoraro. All rights reserved.
4 * Copyright (C) 2010 Google Inc. All rights reserved. 4 * Copyright (C) 2010 Google Inc. All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are 7 * modification, are permitted provided that the following conditions are
8 * met: 8 * met:
9 * 9 *
10 * * Redistributions of source code must retain the above copyright 10 * * Redistributions of source code must retain the above copyright
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 "max-height": { values: [ 165 "max-height": { values: [
166 "none" 166 "none"
167 ] }, 167 ] },
168 "box-orient": { values: [ 168 "box-orient": { values: [
169 "horizontal", "vertical", "inline-axis", "block-axis" 169 "horizontal", "vertical", "inline-axis", "block-axis"
170 ], }, 170 ], },
171 "font-stretch": { values: [ 171 "font-stretch": { values: [
172 "normal", "wider", "narrower", "ultra-condensed", "extra-condensed", "co ndensed", "semi-condensed", 172 "normal", "wider", "narrower", "ultra-condensed", "extra-condensed", "co ndensed", "semi-condensed",
173 "semi-expanded", "expanded", "extra-expanded", "ultra-expanded" 173 "semi-expanded", "expanded", "extra-expanded", "ultra-expanded"
174 ] }, 174 ] },
175 "-webkit-color-correction": { values: [
176 "default", "srgb"
177 ] },
178 "text-underline-style": { values: [ 175 "text-underline-style": { values: [
179 "none", "dotted", "dashed", "solid", "double", "dot-dash", "dot-dot-dash ", "wave" 176 "none", "dotted", "dashed", "solid", "double", "dot-dash", "dot-dot-dash ", "wave"
180 ] }, 177 ] },
181 "text-overline-mode": { values: [ 178 "text-overline-mode": { values: [
182 "continuous", "skip-white-space" 179 "continuous", "skip-white-space"
183 ] }, 180 ] },
184 "-webkit-background-composite": { values: [ 181 "-webkit-background-composite": { values: [
185 "highlight", "clear", "copy", "source-over", "source-in", "source-out", "source-atop", "destination-over", 182 "highlight", "clear", "copy", "source-over", "source-in", "source-out", "source-atop", "destination-over",
186 "destination-in", "destination-out", "destination-atop", "xor", "plus-da rker", "plus-lighter" 183 "destination-in", "destination-out", "destination-atop", "xor", "plus-da rker", "plus-lighter"
187 ] }, 184 ] },
(...skipping 758 matching lines...) Expand 10 before | Expand all | Expand 10 after
946 943
947 /** 944 /**
948 * @param {string} longhand 945 * @param {string} longhand
949 * @return {?Array.<string>} 946 * @return {?Array.<string>}
950 */ 947 */
951 shorthands: function(longhand) 948 shorthands: function(longhand)
952 { 949 {
953 return this._shorthands[longhand]; 950 return this._shorthands[longhand];
954 } 951 }
955 } 952 }
OLDNEW
« no previous file with comments | « Source/core/svg/graphics/filters/SVGFEImage.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698