| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 #include "WebCoreMemoryInstrumentation.h" | 63 #include "WebCoreMemoryInstrumentation.h" |
| 64 #include "WebKitCSSTransformValue.h" | 64 #include "WebKitCSSTransformValue.h" |
| 65 #include "WebKitFontFamilyNames.h" | 65 #include "WebKitFontFamilyNames.h" |
| 66 #include "core/platform/graphics/FontFeatureSettings.h" | 66 #include "core/platform/graphics/FontFeatureSettings.h" |
| 67 #include <wtf/text/StringBuilder.h> | 67 #include <wtf/text/StringBuilder.h> |
| 68 | 68 |
| 69 #if ENABLE(CSS_EXCLUSIONS) | 69 #if ENABLE(CSS_EXCLUSIONS) |
| 70 #include "ExclusionShapeValue.h" | 70 #include "ExclusionShapeValue.h" |
| 71 #endif | 71 #endif |
| 72 | 72 |
| 73 #include "CustomFilterArrayParameter.h" | |
| 74 #include "CustomFilterNumberParameter.h" | |
| 75 #include "CustomFilterOperation.h" | |
| 76 #include "CustomFilterParameter.h" | |
| 77 #include "CustomFilterTransformParameter.h" | |
| 78 #include "WebKitCSSArrayFunctionValue.h" | 73 #include "WebKitCSSArrayFunctionValue.h" |
| 79 #include "WebKitCSSMixFunctionValue.h" | 74 #include "WebKitCSSMixFunctionValue.h" |
| 75 #include "core/platform/graphics/filters/custom/CustomFilterArrayParameter.h" |
| 76 #include "core/platform/graphics/filters/custom/CustomFilterNumberParameter.h" |
| 77 #include "core/platform/graphics/filters/custom/CustomFilterOperation.h" |
| 78 #include "core/platform/graphics/filters/custom/CustomFilterParameter.h" |
| 79 #include "core/platform/graphics/filters/custom/CustomFilterTransformParameter.h
" |
| 80 | 80 |
| 81 #include "StyleCustomFilterProgram.h" | 81 #include "StyleCustomFilterProgram.h" |
| 82 #include "WebKitCSSFilterValue.h" | 82 #include "WebKitCSSFilterValue.h" |
| 83 | 83 |
| 84 namespace WebCore { | 84 namespace WebCore { |
| 85 | 85 |
| 86 // List of all properties we know how to compute, omitting shorthands. | 86 // List of all properties we know how to compute, omitting shorthands. |
| 87 static const CSSPropertyID computedProperties[] = { | 87 static const CSSPropertyID computedProperties[] = { |
| 88 CSSPropertyBackgroundAttachment, | 88 CSSPropertyBackgroundAttachment, |
| 89 #if ENABLE(CSS_COMPOSITING) | 89 #if ENABLE(CSS_COMPOSITING) |
| (...skipping 2899 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2989 static const CSSPropertyID propertiesAfterSlashSeperator[3] = { CSSPropertyB
ackgroundSize, CSSPropertyBackgroundOrigin, | 2989 static const CSSPropertyID propertiesAfterSlashSeperator[3] = { CSSPropertyB
ackgroundSize, CSSPropertyBackgroundOrigin, |
| 2990 CSSPropertyB
ackgroundClip }; | 2990 CSSPropertyB
ackgroundClip }; |
| 2991 | 2991 |
| 2992 RefPtr<CSSValueList> list = CSSValueList::createSlashSeparated(); | 2992 RefPtr<CSSValueList> list = CSSValueList::createSlashSeparated(); |
| 2993 list->append(getCSSPropertyValuesForShorthandProperties(StylePropertyShortha
nd(propertiesBeforeSlashSeperator, WTF_ARRAY_LENGTH(propertiesBeforeSlashSeperat
or)))); | 2993 list->append(getCSSPropertyValuesForShorthandProperties(StylePropertyShortha
nd(propertiesBeforeSlashSeperator, WTF_ARRAY_LENGTH(propertiesBeforeSlashSeperat
or)))); |
| 2994 list->append(getCSSPropertyValuesForShorthandProperties(StylePropertyShortha
nd(propertiesAfterSlashSeperator, WTF_ARRAY_LENGTH(propertiesAfterSlashSeperator
)))); | 2994 list->append(getCSSPropertyValuesForShorthandProperties(StylePropertyShortha
nd(propertiesAfterSlashSeperator, WTF_ARRAY_LENGTH(propertiesAfterSlashSeperator
)))); |
| 2995 return list.release(); | 2995 return list.release(); |
| 2996 } | 2996 } |
| 2997 | 2997 |
| 2998 } // namespace WebCore | 2998 } // namespace WebCore |
| OLD | NEW |