| 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 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 ] }, | 286 ] }, |
| 287 "margin-bottom-collapse": { values: [ | 287 "margin-bottom-collapse": { values: [ |
| 288 "collapse", "separate", "discard" | 288 "collapse", "separate", "discard" |
| 289 ] }, | 289 ] }, |
| 290 "box-reflect": { values: [ | 290 "box-reflect": { values: [ |
| 291 "left", "right", "above", "below" | 291 "left", "right", "above", "below" |
| 292 ] }, | 292 ] }, |
| 293 "overflow": { values: [ | 293 "overflow": { values: [ |
| 294 "hidden", "auto", "visible", "overlay", "scroll" | 294 "hidden", "auto", "visible", "overlay", "scroll" |
| 295 ] }, | 295 ] }, |
| 296 "contain": { values: [ |
| 297 "none", "strict", "content", "size", "layout", "style", "paint" |
| 298 ] }, |
| 296 "text-rendering": { values: [ | 299 "text-rendering": { values: [ |
| 297 "auto", "optimizeSpeed", "optimizeLegibility", "geometricPrecision" | 300 "auto", "optimizeSpeed", "optimizeLegibility", "geometricPrecision" |
| 298 ] }, | 301 ] }, |
| 299 "text-align": { values: [ | 302 "text-align": { values: [ |
| 300 "-webkit-auto", "start", "end", "left", "right", "center", "justify", "-
webkit-left", "-webkit-right", "-webkit-center" | 303 "-webkit-auto", "start", "end", "left", "right", "center", "justify", "-
webkit-left", "-webkit-right", "-webkit-center" |
| 301 ] }, | 304 ] }, |
| 302 "list-style-position": { values: [ | 305 "list-style-position": { values: [ |
| 303 "outside", "inside", "hanging" | 306 "outside", "inside", "hanging" |
| 304 ] }, | 307 ] }, |
| 305 "margin-bottom": { values: [ | 308 "margin-bottom": { values: [ |
| (...skipping 778 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1084 * @param {string} longhand | 1087 * @param {string} longhand |
| 1085 * @return {?Array.<string>} | 1088 * @return {?Array.<string>} |
| 1086 */ | 1089 */ |
| 1087 shorthands: function(longhand) | 1090 shorthands: function(longhand) |
| 1088 { | 1091 { |
| 1089 return this._shorthands[longhand]; | 1092 return this._shorthands[longhand]; |
| 1090 } | 1093 } |
| 1091 } | 1094 } |
| 1092 | 1095 |
| 1093 WebInspector.CSSMetadata.initializeWithSupportedProperties([]); | 1096 WebInspector.CSSMetadata.initializeWithSupportedProperties([]); |
| OLD | NEW |