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 2744 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2755 case CSSPropertyWebkitPaddingBefore: | 2755 case CSSPropertyWebkitPaddingBefore: |
2756 case CSSPropertyWebkitLogicalWidth: | 2756 case CSSPropertyWebkitLogicalWidth: |
2757 case CSSPropertyWebkitLogicalHeight: | 2757 case CSSPropertyWebkitLogicalHeight: |
2758 case CSSPropertyWebkitMinLogicalWidth: | 2758 case CSSPropertyWebkitMinLogicalWidth: |
2759 case CSSPropertyWebkitMinLogicalHeight: | 2759 case CSSPropertyWebkitMinLogicalHeight: |
2760 case CSSPropertyWebkitMaxLogicalWidth: | 2760 case CSSPropertyWebkitMaxLogicalWidth: |
2761 case CSSPropertyWebkitMaxLogicalHeight: | 2761 case CSSPropertyWebkitMaxLogicalHeight: |
2762 ASSERT_NOT_REACHED(); | 2762 ASSERT_NOT_REACHED(); |
2763 break; | 2763 break; |
2764 | 2764 |
2765 // FIXME: crbug.com/154772 Unimplemented css-transforms properties | |
2766 case CSSPropertyBackfaceVisibility: | |
2767 case CSSPropertyPerspective: | |
2768 case CSSPropertyPerspectiveOrigin: | |
2769 case CSSPropertyTransform: | |
2770 case CSSPropertyTransformOrigin: | |
2771 case CSSPropertyTransformStyle: | |
2772 break; | |
2773 | |
2774 /* Unimplemented @font-face properties */ | 2765 /* Unimplemented @font-face properties */ |
2775 case CSSPropertyFontStretch: | 2766 case CSSPropertyFontStretch: |
2776 case CSSPropertySrc: | 2767 case CSSPropertySrc: |
2777 case CSSPropertyUnicodeRange: | 2768 case CSSPropertyUnicodeRange: |
2778 break; | 2769 break; |
2779 | 2770 |
2780 /* Other unimplemented properties */ | 2771 /* Other unimplemented properties */ |
2781 case CSSPropertyPage: // for @page | 2772 case CSSPropertyPage: // for @page |
2782 case CSSPropertyQuotes: // FIXME: needs implementation | 2773 case CSSPropertyQuotes: // FIXME: needs implementation |
2783 case CSSPropertySize: // for @page | 2774 case CSSPropertySize: // for @page |
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3045 static const CSSPropertyID propertiesAfterSlashSeperator[3] = { CSSPropertyB
ackgroundSize, CSSPropertyBackgroundOrigin, | 3036 static const CSSPropertyID propertiesAfterSlashSeperator[3] = { CSSPropertyB
ackgroundSize, CSSPropertyBackgroundOrigin, |
3046 CSSPropertyB
ackgroundClip }; | 3037 CSSPropertyB
ackgroundClip }; |
3047 | 3038 |
3048 RefPtrWillBeRawPtr<CSSValueList> list = CSSValueList::createSlashSeparated()
; | 3039 RefPtrWillBeRawPtr<CSSValueList> list = CSSValueList::createSlashSeparated()
; |
3049 list->append(valuesForShorthandProperty(StylePropertyShorthand(CSSPropertyBa
ckground, propertiesBeforeSlashSeperator, WTF_ARRAY_LENGTH(propertiesBeforeSlash
Seperator)))); | 3040 list->append(valuesForShorthandProperty(StylePropertyShorthand(CSSPropertyBa
ckground, propertiesBeforeSlashSeperator, WTF_ARRAY_LENGTH(propertiesBeforeSlash
Seperator)))); |
3050 list->append(valuesForShorthandProperty(StylePropertyShorthand(CSSPropertyBa
ckground, propertiesAfterSlashSeperator, WTF_ARRAY_LENGTH(propertiesAfterSlashSe
perator)))); | 3041 list->append(valuesForShorthandProperty(StylePropertyShorthand(CSSPropertyBa
ckground, propertiesAfterSlashSeperator, WTF_ARRAY_LENGTH(propertiesAfterSlashSe
perator)))); |
3051 return list.release(); | 3042 return list.release(); |
3052 } | 3043 } |
3053 | 3044 |
3054 } // namespace WebCore | 3045 } // namespace WebCore |
OLD | NEW |