| 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 643 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 654 "background-repeat-y": { m: "background" }, | 654 "background-repeat-y": { m: "background" }, |
| 655 "border-top": { m: "background" }, | 655 "border-top": { m: "background" }, |
| 656 "border-right": { m: "background" }, | 656 "border-right": { m: "background" }, |
| 657 "border-bottom": { m: "background" }, | 657 "border-bottom": { m: "background" }, |
| 658 "border-left": { m: "background" }, | 658 "border-left": { m: "background" }, |
| 659 "border-radius": { m: "background" }, | 659 "border-radius": { m: "background" }, |
| 660 "bottom": { m: "visuren" }, | 660 "bottom": { m: "visuren" }, |
| 661 "color": { m: "color", a: "foreground" }, | 661 "color": { m: "color", a: "foreground" }, |
| 662 "counter-increment": { m: "generate" }, | 662 "counter-increment": { m: "generate" }, |
| 663 "counter-reset": { m: "generate" }, | 663 "counter-reset": { m: "generate" }, |
| 664 "grid-definition-columns": { m: "grid" }, | 664 "grid-template-columns": { m: "grid" }, |
| 665 "grid-definition-rows": { m: "grid" }, | 665 "grid-template-rows": { m: "grid" }, |
| 666 "height": { m: "box" }, | 666 "height": { m: "box" }, |
| 667 "image-orientation": { m: "images" }, | 667 "image-orientation": { m: "images" }, |
| 668 "left": { m: "visuren" }, | 668 "left": { m: "visuren" }, |
| 669 "list-style": { m: "lists" }, | 669 "list-style": { m: "lists" }, |
| 670 "min-height": { m: "box" }, | 670 "min-height": { m: "box" }, |
| 671 "min-width": { m: "box" }, | 671 "min-width": { m: "box" }, |
| 672 "opacity": { m: "color", a: "transparency" }, | 672 "opacity": { m: "color", a: "transparency" }, |
| 673 "orphans": { m: "page" }, | 673 "orphans": { m: "page" }, |
| 674 "outline-offset": { m: "ui" }, | 674 "outline-offset": { m: "ui" }, |
| 675 "padding": { m: "box", a: "padding1" }, | 675 "padding": { m: "box", a: "padding1" }, |
| (...skipping 315 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 |