| 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 2064 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2075 ASSERT_NOT_REACHED(); | 2075 ASSERT_NOT_REACHED(); |
| 2076 break; | 2076 break; |
| 2077 | 2077 |
| 2078 /* Unimplemented @font-face properties */ | 2078 /* Unimplemented @font-face properties */ |
| 2079 case CSSPropertySrc: | 2079 case CSSPropertySrc: |
| 2080 case CSSPropertyUnicodeRange: | 2080 case CSSPropertyUnicodeRange: |
| 2081 break; | 2081 break; |
| 2082 | 2082 |
| 2083 /* Other unimplemented properties */ | 2083 /* Other unimplemented properties */ |
| 2084 case CSSPropertyPage: // for @page | 2084 case CSSPropertyPage: // for @page |
| 2085 case CSSPropertyQuotes: // FIXME: needs implementation | |
| 2086 case CSSPropertySize: // for @page | 2085 case CSSPropertySize: // for @page |
| 2087 break; | 2086 break; |
| 2088 | 2087 |
| 2089 /* Unimplemented -webkit- properties */ | 2088 /* Unimplemented -webkit- properties */ |
| 2090 case CSSPropertyWebkitBorderRadius: | 2089 case CSSPropertyWebkitBorderRadius: |
| 2091 case CSSPropertyWebkitPerspectiveOriginX: | 2090 case CSSPropertyWebkitPerspectiveOriginX: |
| 2092 case CSSPropertyWebkitPerspectiveOriginY: | 2091 case CSSPropertyWebkitPerspectiveOriginY: |
| 2093 case CSSPropertyWebkitTextStroke: | 2092 case CSSPropertyWebkitTextStroke: |
| 2094 case CSSPropertyWebkitTransformOriginX: | 2093 case CSSPropertyWebkitTransformOriginX: |
| 2095 case CSSPropertyWebkitTransformOriginY: | 2094 case CSSPropertyWebkitTransformOriginY: |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2268 static const CSSPropertyID propertiesAfterSlashSeperator[3] = { CSSPropertyB
ackgroundSize, CSSPropertyBackgroundOrigin, | 2267 static const CSSPropertyID propertiesAfterSlashSeperator[3] = { CSSPropertyB
ackgroundSize, CSSPropertyBackgroundOrigin, |
| 2269 CSSPropertyB
ackgroundClip }; | 2268 CSSPropertyB
ackgroundClip }; |
| 2270 | 2269 |
| 2271 RefPtr<CSSValueList> list = CSSValueList::createSlashSeparated(); | 2270 RefPtr<CSSValueList> list = CSSValueList::createSlashSeparated(); |
| 2272 list->append(valuesForShorthandProperty(StylePropertyShorthand(CSSPropertyBa
ckground, propertiesBeforeSlashSeperator, WTF_ARRAY_LENGTH(propertiesBeforeSlash
Seperator)))); | 2271 list->append(valuesForShorthandProperty(StylePropertyShorthand(CSSPropertyBa
ckground, propertiesBeforeSlashSeperator, WTF_ARRAY_LENGTH(propertiesBeforeSlash
Seperator)))); |
| 2273 list->append(valuesForShorthandProperty(StylePropertyShorthand(CSSPropertyBa
ckground, propertiesAfterSlashSeperator, WTF_ARRAY_LENGTH(propertiesAfterSlashSe
perator)))); | 2272 list->append(valuesForShorthandProperty(StylePropertyShorthand(CSSPropertyBa
ckground, propertiesAfterSlashSeperator, WTF_ARRAY_LENGTH(propertiesAfterSlashSe
perator)))); |
| 2274 return list.release(); | 2273 return list.release(); |
| 2275 } | 2274 } |
| 2276 | 2275 |
| 2277 } // namespace blink | 2276 } // namespace blink |
| OLD | NEW |