| OLD | NEW |
| 1 /* | 1 /* |
| 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) | 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) |
| 3 * Copyright (C) 2004, 2005, 2006, 2008 Apple Inc. All rights reserved. | 3 * Copyright (C) 2004, 2005, 2006, 2008 Apple Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 const StylePropertyShorthand& borderSpacingShorthand(); | 73 const StylePropertyShorthand& borderSpacingShorthand(); |
| 74 const StylePropertyShorthand& borderStyleShorthand(); | 74 const StylePropertyShorthand& borderStyleShorthand(); |
| 75 const StylePropertyShorthand& borderTopShorthand(); | 75 const StylePropertyShorthand& borderTopShorthand(); |
| 76 const StylePropertyShorthand& borderWidthShorthand(); | 76 const StylePropertyShorthand& borderWidthShorthand(); |
| 77 const StylePropertyShorthand& listStyleShorthand(); | 77 const StylePropertyShorthand& listStyleShorthand(); |
| 78 const StylePropertyShorthand& fontShorthand(); | 78 const StylePropertyShorthand& fontShorthand(); |
| 79 const StylePropertyShorthand& marginShorthand(); | 79 const StylePropertyShorthand& marginShorthand(); |
| 80 const StylePropertyShorthand& outlineShorthand(); | 80 const StylePropertyShorthand& outlineShorthand(); |
| 81 const StylePropertyShorthand& overflowShorthand(); | 81 const StylePropertyShorthand& overflowShorthand(); |
| 82 const StylePropertyShorthand& paddingShorthand(); | 82 const StylePropertyShorthand& paddingShorthand(); |
| 83 const StylePropertyShorthand& transitionShorthand(); |
| 83 const StylePropertyShorthand& webkitAnimationShorthand(); | 84 const StylePropertyShorthand& webkitAnimationShorthand(); |
| 84 const StylePropertyShorthand& webkitAnimationShorthandForParsing(); | 85 const StylePropertyShorthand& webkitAnimationShorthandForParsing(); |
| 85 const StylePropertyShorthand& webkitBorderAfterShorthand(); | 86 const StylePropertyShorthand& webkitBorderAfterShorthand(); |
| 86 const StylePropertyShorthand& webkitBorderBeforeShorthand(); | 87 const StylePropertyShorthand& webkitBorderBeforeShorthand(); |
| 87 const StylePropertyShorthand& webkitBorderEndShorthand(); | 88 const StylePropertyShorthand& webkitBorderEndShorthand(); |
| 88 const StylePropertyShorthand& webkitBorderStartShorthand(); | 89 const StylePropertyShorthand& webkitBorderStartShorthand(); |
| 89 const StylePropertyShorthand& webkitColumnsShorthand(); | 90 const StylePropertyShorthand& webkitColumnsShorthand(); |
| 90 const StylePropertyShorthand& webkitColumnRuleShorthand(); | 91 const StylePropertyShorthand& webkitColumnRuleShorthand(); |
| 91 const StylePropertyShorthand& webkitFlexFlowShorthand(); | 92 const StylePropertyShorthand& webkitFlexFlowShorthand(); |
| 92 const StylePropertyShorthand& webkitFlexShorthand(); | 93 const StylePropertyShorthand& webkitFlexShorthand(); |
| 93 const StylePropertyShorthand& webkitMarginCollapseShorthand(); | 94 const StylePropertyShorthand& webkitMarginCollapseShorthand(); |
| 94 const StylePropertyShorthand& webkitMarqueeShorthand(); | 95 const StylePropertyShorthand& webkitMarqueeShorthand(); |
| 95 const StylePropertyShorthand& webkitMaskShorthand(); | 96 const StylePropertyShorthand& webkitMaskShorthand(); |
| 96 const StylePropertyShorthand& webkitMaskPositionShorthand(); | 97 const StylePropertyShorthand& webkitMaskPositionShorthand(); |
| 97 const StylePropertyShorthand& webkitMaskRepeatShorthand(); | 98 const StylePropertyShorthand& webkitMaskRepeatShorthand(); |
| 98 const StylePropertyShorthand& webkitTextEmphasisShorthand(); | 99 const StylePropertyShorthand& webkitTextEmphasisShorthand(); |
| 99 const StylePropertyShorthand& webkitTextStrokeShorthand(); | 100 const StylePropertyShorthand& webkitTextStrokeShorthand(); |
| 100 const StylePropertyShorthand& webkitTransitionShorthand(); | 101 const StylePropertyShorthand& webkitTransitionShorthand(); |
| 101 const StylePropertyShorthand& webkitTransformOriginShorthand(); | 102 const StylePropertyShorthand& webkitTransformOriginShorthand(); |
| 102 #if ENABLE(CSS_EXCLUSIONS) | 103 #if ENABLE(CSS_EXCLUSIONS) |
| 103 const StylePropertyShorthand& webkitWrapShorthand(); | 104 const StylePropertyShorthand& webkitWrapShorthand(); |
| 104 #endif | 105 #endif |
| 105 | 106 |
| 106 // Returns an empty list if the property is not a shorthand | 107 // Returns an empty list if the property is not a shorthand |
| 107 const StylePropertyShorthand& shorthandForProperty(CSSPropertyID); | 108 const StylePropertyShorthand& shorthandForProperty(CSSPropertyID); |
| 108 | 109 |
| 109 } // namespace WebCore | 110 } // namespace WebCore |
| 110 | 111 |
| 111 #endif // StylePropertyShorthand_h | 112 #endif // StylePropertyShorthand_h |
| OLD | NEW |