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 577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
588 ] }, | 588 ] }, |
589 "-webkit-line-break": { values: [ | 589 "-webkit-line-break": { values: [ |
590 "auto", "loose", "normal", "strict" | 590 "auto", "loose", "normal", "strict" |
591 ] }, | 591 ] }, |
592 "-webkit-perspective": { values: [ | 592 "-webkit-perspective": { values: [ |
593 "none" | 593 "none" |
594 ] }, | 594 ] }, |
595 "-webkit-perspective-origin": { values: [ | 595 "-webkit-perspective-origin": { values: [ |
596 "left", "center", "right", "top", "bottom" | 596 "left", "center", "right", "top", "bottom" |
597 ] }, | 597 ] }, |
598 "-webkit-text-align-last": { values: [ | 598 "text-align-last": { values: [ |
599 "auto", "start", "end", "left", "right", "center", "justify" | 599 "auto", "start", "end", "left", "right", "center", "justify" |
600 ] }, | 600 ] }, |
601 "-webkit-text-decoration-line": { values: [ | 601 "-webkit-text-decoration-line": { values: [ |
602 "none", "underline", "overline", "line-through", "blink" | 602 "none", "underline", "overline", "line-through", "blink" |
603 ] }, | 603 ] }, |
604 "-webkit-text-decoration-style": { values: [ | 604 "-webkit-text-decoration-style": { values: [ |
605 "solid", "double", "dotted", "dashed", "wavy" | 605 "solid", "double", "dotted", "dashed", "wavy" |
606 ] }, | 606 ] }, |
607 "-webkit-text-decoration-skip": { values: [ | 607 "-webkit-text-decoration-skip": { values: [ |
608 "none", "objects", "spaces", "ink", "edges", "box-decoration" | 608 "none", "objects", "spaces", "ink", "edges", "box-decoration" |
(...skipping 361 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 |