| 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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 "max-height": { values: [ | 210 "max-height": { values: [ |
| 211 "none" | 211 "none" |
| 212 ] }, | 212 ] }, |
| 213 "box-orient": { values: [ | 213 "box-orient": { values: [ |
| 214 "horizontal", "vertical", "inline-axis", "block-axis" | 214 "horizontal", "vertical", "inline-axis", "block-axis" |
| 215 ], }, | 215 ], }, |
| 216 "font-stretch": { values: [ | 216 "font-stretch": { values: [ |
| 217 "normal", "wider", "narrower", "ultra-condensed", "extra-condensed", "co
ndensed", "semi-condensed", | 217 "normal", "wider", "narrower", "ultra-condensed", "extra-condensed", "co
ndensed", "semi-condensed", |
| 218 "semi-expanded", "expanded", "extra-expanded", "ultra-expanded" | 218 "semi-expanded", "expanded", "extra-expanded", "ultra-expanded" |
| 219 ] }, | 219 ] }, |
| 220 "-webkit-background-composite": { values: [ | |
| 221 "highlight", "clear", "copy", "source-over", "source-in", "source-out",
"source-atop", "destination-over", | |
| 222 "destination-in", "destination-out", "destination-atop", "xor", "plus-da
rker", "plus-lighter" | |
| 223 ] }, | |
| 224 "border-left-width": { values: [ | 220 "border-left-width": { values: [ |
| 225 "medium", "thick", "thin" | 221 "medium", "thick", "thin" |
| 226 ] }, | 222 ] }, |
| 227 "box-shadow": { values: [ | 223 "box-shadow": { values: [ |
| 228 "inset", "none" | 224 "inset", "none" |
| 229 ] }, | 225 ] }, |
| 230 "writing-mode": { values: [ | 226 "writing-mode": { values: [ |
| 231 "horizontal-tb", "vertical-rl", "vertical-lr" | 227 "horizontal-tb", "vertical-rl", "vertical-lr" |
| 232 ] }, | 228 ] }, |
| 233 "-webkit-writing-mode": { values: [ | 229 "-webkit-writing-mode": { values: [ |
| (...skipping 839 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1073 * @param {string} longhand | 1069 * @param {string} longhand |
| 1074 * @return {?Array.<string>} | 1070 * @return {?Array.<string>} |
| 1075 */ | 1071 */ |
| 1076 shorthands: function(longhand) | 1072 shorthands: function(longhand) |
| 1077 { | 1073 { |
| 1078 return this._shorthands[longhand]; | 1074 return this._shorthands[longhand]; |
| 1079 } | 1075 } |
| 1080 } | 1076 } |
| 1081 | 1077 |
| 1082 WebInspector.CSSMetadata.initializeWithSupportedProperties([]); | 1078 WebInspector.CSSMetadata.initializeWithSupportedProperties([]); |
| OLD | NEW |