| 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 438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 449 "max-width": { values: [ | 449 "max-width": { values: [ |
| 450 "none" | 450 "none" |
| 451 ] }, | 451 ] }, |
| 452 "caption-side": { values: [ | 452 "caption-side": { values: [ |
| 453 "top", "bottom" | 453 "top", "bottom" |
| 454 ] }, | 454 ] }, |
| 455 "empty-cells": { values: [ | 455 "empty-cells": { values: [ |
| 456 "hide", "show" | 456 "hide", "show" |
| 457 ] }, | 457 ] }, |
| 458 "pointer-events": { values: [ | 458 "pointer-events": { values: [ |
| 459 "none", "all", "auto", "visible", "visiblepainted", "visiblefill", "visi
blestroke", "painted", "fill", "stroke" | 459 "none", "all", "auto", "visible", "visiblepainted", "visiblefill", "visi
blestroke", "painted", "fill", "stroke", "bounding-box" |
| 460 ] }, | 460 ] }, |
| 461 "letter-spacing": { values: [ | 461 "letter-spacing": { values: [ |
| 462 "normal" | 462 "normal" |
| 463 ] }, | 463 ] }, |
| 464 "background-clip": { values: [ | 464 "background-clip": { values: [ |
| 465 "border-box", "content-box", "padding-box" | 465 "border-box", "content-box", "padding-box" |
| 466 ] }, | 466 ] }, |
| 467 "-webkit-font-smoothing": { values: [ | 467 "-webkit-font-smoothing": { values: [ |
| 468 "none", "auto", "antialiased", "subpixel-antialiased" | 468 "none", "auto", "antialiased", "subpixel-antialiased" |
| 469 ] }, | 469 ] }, |
| (...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 970 | 970 |
| 971 /** | 971 /** |
| 972 * @param {string} longhand | 972 * @param {string} longhand |
| 973 * @return {?Array.<string>} | 973 * @return {?Array.<string>} |
| 974 */ | 974 */ |
| 975 shorthands: function(longhand) | 975 shorthands: function(longhand) |
| 976 { | 976 { |
| 977 return this._shorthands[longhand]; | 977 return this._shorthands[longhand]; |
| 978 } | 978 } |
| 979 } | 979 } |
| OLD | NEW |