| 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 414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 425 "font-family": { values: [ | 425 "font-family": { values: [ |
| 426 "serif", "sans-serif", "cursive", "fantasy", "monospace", "-webkit-body"
, "-webkit-pictograph" | 426 "serif", "sans-serif", "cursive", "fantasy", "monospace", "-webkit-body"
, "-webkit-pictograph" |
| 427 ] }, | 427 ] }, |
| 428 "text-overflow-mode": { values: [ | 428 "text-overflow-mode": { values: [ |
| 429 "clip", "ellipsis" | 429 "clip", "ellipsis" |
| 430 ] }, | 430 ] }, |
| 431 "border-bottom-style": { values: [ | 431 "border-bottom-style": { values: [ |
| 432 "none", "hidden", "inset", "groove", "ridge", "outset", "dotted", "dashe
d", "solid", "double" | 432 "none", "hidden", "inset", "groove", "ridge", "outset", "dotted", "dashe
d", "solid", "double" |
| 433 ] }, | 433 ] }, |
| 434 "unicode-bidi": { values: [ | 434 "unicode-bidi": { values: [ |
| 435 "normal", "bidi-override", "embed" | 435 "normal", "bidi-override", "embed", "isolate", "isolate-override", "plai
ntext" |
| 436 ] }, | 436 ] }, |
| 437 "clip-rule": { values: [ | 437 "clip-rule": { values: [ |
| 438 "nonzero", "evenodd" | 438 "nonzero", "evenodd" |
| 439 ] }, | 439 ] }, |
| 440 "margin-left": { values: [ | 440 "margin-left": { values: [ |
| 441 "auto" | 441 "auto" |
| 442 ] }, | 442 ] }, |
| 443 "margin-top": { values: [ | 443 "margin-top": { values: [ |
| 444 "auto" | 444 "auto" |
| 445 ] }, | 445 ] }, |
| (...skipping 545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 991 | 991 |
| 992 /** | 992 /** |
| 993 * @param {string} longhand | 993 * @param {string} longhand |
| 994 * @return {?Array.<string>} | 994 * @return {?Array.<string>} |
| 995 */ | 995 */ |
| 996 shorthands: function(longhand) | 996 shorthands: function(longhand) |
| 997 { | 997 { |
| 998 return this._shorthands[longhand]; | 998 return this._shorthands[longhand]; |
| 999 } | 999 } |
| 1000 } | 1000 } |
| OLD | NEW |