| 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 2034 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2045 case CSSPropertyWebkitMaxLogicalWidth: | 2045 case CSSPropertyWebkitMaxLogicalWidth: |
| 2046 case CSSPropertyWebkitMaxLogicalHeight: | 2046 case CSSPropertyWebkitMaxLogicalHeight: |
| 2047 ASSERT_NOT_REACHED(); | 2047 ASSERT_NOT_REACHED(); |
| 2048 break; | 2048 break; |
| 2049 | 2049 |
| 2050 /* Unimplemented @font-face properties */ | 2050 /* Unimplemented @font-face properties */ |
| 2051 case CSSPropertySrc: | 2051 case CSSPropertySrc: |
| 2052 case CSSPropertyUnicodeRange: | 2052 case CSSPropertyUnicodeRange: |
| 2053 break; | 2053 break; |
| 2054 | 2054 |
| 2055 /* Other unimplemented properties */ | |
| 2056 case CSSPropertyPage: // for @page | |
| 2057 case CSSPropertySize: // for @page | |
| 2058 break; | |
| 2059 | |
| 2060 /* Unimplemented -webkit- properties */ | 2055 /* Unimplemented -webkit- properties */ |
| 2061 case CSSPropertyWebkitBorderRadius: | 2056 case CSSPropertyWebkitBorderRadius: |
| 2062 case CSSPropertyWebkitPerspectiveOriginX: | 2057 case CSSPropertyWebkitPerspectiveOriginX: |
| 2063 case CSSPropertyWebkitPerspectiveOriginY: | 2058 case CSSPropertyWebkitPerspectiveOriginY: |
| 2064 case CSSPropertyWebkitTextStroke: | 2059 case CSSPropertyWebkitTextStroke: |
| 2065 case CSSPropertyWebkitTransformOriginX: | 2060 case CSSPropertyWebkitTransformOriginX: |
| 2066 case CSSPropertyWebkitTransformOriginY: | 2061 case CSSPropertyWebkitTransformOriginY: |
| 2067 case CSSPropertyWebkitTransformOriginZ: | 2062 case CSSPropertyWebkitTransformOriginZ: |
| 2068 break; | 2063 break; |
| 2069 | 2064 |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2239 static const CSSPropertyID propertiesAfterSlashSeperator[3] = { CSSPropertyB
ackgroundSize, CSSPropertyBackgroundOrigin, | 2234 static const CSSPropertyID propertiesAfterSlashSeperator[3] = { CSSPropertyB
ackgroundSize, CSSPropertyBackgroundOrigin, |
| 2240 CSSPropertyB
ackgroundClip }; | 2235 CSSPropertyB
ackgroundClip }; |
| 2241 | 2236 |
| 2242 RefPtr<CSSValueList> list = CSSValueList::createSlashSeparated(); | 2237 RefPtr<CSSValueList> list = CSSValueList::createSlashSeparated(); |
| 2243 list->append(valuesForShorthandProperty(StylePropertyShorthand(CSSPropertyBa
ckground, propertiesBeforeSlashSeperator, WTF_ARRAY_LENGTH(propertiesBeforeSlash
Seperator)))); | 2238 list->append(valuesForShorthandProperty(StylePropertyShorthand(CSSPropertyBa
ckground, propertiesBeforeSlashSeperator, WTF_ARRAY_LENGTH(propertiesBeforeSlash
Seperator)))); |
| 2244 list->append(valuesForShorthandProperty(StylePropertyShorthand(CSSPropertyBa
ckground, propertiesAfterSlashSeperator, WTF_ARRAY_LENGTH(propertiesAfterSlashSe
perator)))); | 2239 list->append(valuesForShorthandProperty(StylePropertyShorthand(CSSPropertyBa
ckground, propertiesAfterSlashSeperator, WTF_ARRAY_LENGTH(propertiesAfterSlashSe
perator)))); |
| 2245 return list.release(); | 2240 return list.release(); |
| 2246 } | 2241 } |
| 2247 | 2242 |
| 2248 } // namespace blink | 2243 } // namespace blink |
| OLD | NEW |