| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004 Zack Rusin <zack@kde.org> | 2 * Copyright (C) 2004 Zack Rusin <zack@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc.
All rights reserved. | 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc.
All rights reserved. |
| 4 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> | 4 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> |
| 5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> | 5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> |
| 6 * Copyright (C) 2011 Sencha, Inc. All rights reserved. | 6 * Copyright (C) 2011 Sencha, Inc. All rights reserved. |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Lesser General Public | 9 * modify it under the terms of the GNU Lesser General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 2810 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2821 case CSSPropertyMask: | 2821 case CSSPropertyMask: |
| 2822 case CSSPropertyEnableBackground: | 2822 case CSSPropertyEnableBackground: |
| 2823 case CSSPropertyFilter: | 2823 case CSSPropertyFilter: |
| 2824 case CSSPropertyFloodColor: | 2824 case CSSPropertyFloodColor: |
| 2825 case CSSPropertyFloodOpacity: | 2825 case CSSPropertyFloodOpacity: |
| 2826 case CSSPropertyLightingColor: | 2826 case CSSPropertyLightingColor: |
| 2827 case CSSPropertyStopColor: | 2827 case CSSPropertyStopColor: |
| 2828 case CSSPropertyStopOpacity: | 2828 case CSSPropertyStopOpacity: |
| 2829 case CSSPropertyColorInterpolation: | 2829 case CSSPropertyColorInterpolation: |
| 2830 case CSSPropertyColorInterpolationFilters: | 2830 case CSSPropertyColorInterpolationFilters: |
| 2831 case CSSPropertyColorProfile: | |
| 2832 case CSSPropertyColorRendering: | 2831 case CSSPropertyColorRendering: |
| 2833 case CSSPropertyFill: | 2832 case CSSPropertyFill: |
| 2834 case CSSPropertyFillOpacity: | 2833 case CSSPropertyFillOpacity: |
| 2835 case CSSPropertyFillRule: | 2834 case CSSPropertyFillRule: |
| 2836 case CSSPropertyMarker: | 2835 case CSSPropertyMarker: |
| 2837 case CSSPropertyMarkerEnd: | 2836 case CSSPropertyMarkerEnd: |
| 2838 case CSSPropertyMarkerMid: | 2837 case CSSPropertyMarkerMid: |
| 2839 case CSSPropertyMarkerStart: | 2838 case CSSPropertyMarkerStart: |
| 2840 case CSSPropertyMaskType: | 2839 case CSSPropertyMaskType: |
| 2841 case CSSPropertyShapeRendering: | 2840 case CSSPropertyShapeRendering: |
| (...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3047 static const CSSPropertyID propertiesAfterSlashSeperator[3] = { CSSPropertyB
ackgroundSize, CSSPropertyBackgroundOrigin, | 3046 static const CSSPropertyID propertiesAfterSlashSeperator[3] = { CSSPropertyB
ackgroundSize, CSSPropertyBackgroundOrigin, |
| 3048 CSSPropertyB
ackgroundClip }; | 3047 CSSPropertyB
ackgroundClip }; |
| 3049 | 3048 |
| 3050 RefPtrWillBeRawPtr<CSSValueList> list = CSSValueList::createSlashSeparated()
; | 3049 RefPtrWillBeRawPtr<CSSValueList> list = CSSValueList::createSlashSeparated()
; |
| 3051 list->append(valuesForShorthandProperty(StylePropertyShorthand(CSSPropertyBa
ckground, propertiesBeforeSlashSeperator, WTF_ARRAY_LENGTH(propertiesBeforeSlash
Seperator)))); | 3050 list->append(valuesForShorthandProperty(StylePropertyShorthand(CSSPropertyBa
ckground, propertiesBeforeSlashSeperator, WTF_ARRAY_LENGTH(propertiesBeforeSlash
Seperator)))); |
| 3052 list->append(valuesForShorthandProperty(StylePropertyShorthand(CSSPropertyBa
ckground, propertiesAfterSlashSeperator, WTF_ARRAY_LENGTH(propertiesAfterSlashSe
perator)))); | 3051 list->append(valuesForShorthandProperty(StylePropertyShorthand(CSSPropertyBa
ckground, propertiesAfterSlashSeperator, WTF_ARRAY_LENGTH(propertiesAfterSlashSe
perator)))); |
| 3053 return list.release(); | 3052 return list.release(); |
| 3054 } | 3053 } |
| 3055 | 3054 |
| 3056 } // namespace WebCore | 3055 } // namespace WebCore |
| OLD | NEW |