| 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 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 "cursor": { values: [ | 245 "cursor": { values: [ |
| 246 "none", "copy", "auto", "crosshair", "default", "pointer", "move", "vert
ical-text", "cell", "context-menu", | 246 "none", "copy", "auto", "crosshair", "default", "pointer", "move", "vert
ical-text", "cell", "context-menu", |
| 247 "alias", "progress", "no-drop", "not-allowed", "-webkit-zoom-in", "-webk
it-zoom-out", "e-resize", "ne-resize", | 247 "alias", "progress", "no-drop", "not-allowed", "-webkit-zoom-in", "-webk
it-zoom-out", "e-resize", "ne-resize", |
| 248 "nw-resize", "n-resize", "se-resize", "sw-resize", "s-resize", "w-resize
", "ew-resize", "ns-resize", | 248 "nw-resize", "n-resize", "se-resize", "sw-resize", "s-resize", "w-resize
", "ew-resize", "ns-resize", |
| 249 "nesw-resize", "nwse-resize", "col-resize", "row-resize", "text", "wait"
, "help", "all-scroll", "-webkit-grab", | 249 "nesw-resize", "nwse-resize", "col-resize", "row-resize", "text", "wait"
, "help", "all-scroll", "-webkit-grab", |
| 250 "-webkit-grabbing" | 250 "-webkit-grabbing" |
| 251 ] }, | 251 ] }, |
| 252 "border-width": { values: [ | 252 "border-width": { values: [ |
| 253 "medium", "thick", "thin" | 253 "medium", "thick", "thin" |
| 254 ] }, | 254 ] }, |
| 255 "border-style": { values: [ |
| 256 "none", "hidden", "inset", "groove", "ridge", "outset", "dotted", "dashe
d", "solid", "double" |
| 257 ] }, |
| 255 "size": { values: [ | 258 "size": { values: [ |
| 256 "a3", "a4", "a5", "b4", "b5", "landscape", "ledger", "legal", "letter",
"portrait" | 259 "a3", "a4", "a5", "b4", "b5", "landscape", "ledger", "legal", "letter",
"portrait" |
| 257 ] }, | 260 ] }, |
| 258 "background-size": { values: [ | 261 "background-size": { values: [ |
| 259 "contain", "cover" | 262 "contain", "cover" |
| 260 ] }, | 263 ] }, |
| 261 "direction": { values: [ | 264 "direction": { values: [ |
| 262 "ltr", "rtl" | 265 "ltr", "rtl" |
| 263 ] }, | 266 ] }, |
| 264 "marquee-direction": { values: [ | 267 "marquee-direction": { values: [ |
| (...skipping 724 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 989 * @param {string} longhand | 992 * @param {string} longhand |
| 990 * @return {?Array.<string>} | 993 * @return {?Array.<string>} |
| 991 */ | 994 */ |
| 992 shorthands: function(longhand) | 995 shorthands: function(longhand) |
| 993 { | 996 { |
| 994 return this._shorthands[longhand]; | 997 return this._shorthands[longhand]; |
| 995 } | 998 } |
| 996 } | 999 } |
| 997 | 1000 |
| 998 WebInspector.CSSMetadata.initializeWithSupportedProperties([]); | 1001 WebInspector.CSSMetadata.initializeWithSupportedProperties([]); |
| OLD | NEW |