| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |