| 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 #include "core/rendering/RenderView.h" | 66 #include "core/rendering/RenderView.h" |
| 67 #include "core/rendering/style/ContentData.h" | 67 #include "core/rendering/style/ContentData.h" |
| 68 #include "core/rendering/style/CounterContent.h" | 68 #include "core/rendering/style/CounterContent.h" |
| 69 #include "core/rendering/style/CursorList.h" | 69 #include "core/rendering/style/CursorList.h" |
| 70 #include "core/rendering/style/RenderStyle.h" | 70 #include "core/rendering/style/RenderStyle.h" |
| 71 #include "core/rendering/style/ShadowList.h" | 71 #include "core/rendering/style/ShadowList.h" |
| 72 #include "core/rendering/style/ShapeValue.h" | 72 #include "core/rendering/style/ShapeValue.h" |
| 73 #include "platform/fonts/FontFeatureSettings.h" | 73 #include "platform/fonts/FontFeatureSettings.h" |
| 74 #include "wtf/text/StringBuilder.h" | 74 #include "wtf/text/StringBuilder.h" |
| 75 | 75 |
| 76 #include "core/platform/graphics/filters/custom/CustomFilterOperation.h" | |
| 77 #include "core/rendering/style/StyleCustomFilterProgram.h" | 76 #include "core/rendering/style/StyleCustomFilterProgram.h" |
| 78 #include "platform/graphics/filters/custom/CustomFilterArrayParameter.h" | 77 #include "platform/graphics/filters/custom/CustomFilterArrayParameter.h" |
| 79 #include "platform/graphics/filters/custom/CustomFilterNumberParameter.h" | 78 #include "platform/graphics/filters/custom/CustomFilterNumberParameter.h" |
| 79 #include "platform/graphics/filters/custom/CustomFilterOperation.h" |
| 80 #include "platform/graphics/filters/custom/CustomFilterParameter.h" | 80 #include "platform/graphics/filters/custom/CustomFilterParameter.h" |
| 81 #include "platform/graphics/filters/custom/CustomFilterTransformParameter.h" | 81 #include "platform/graphics/filters/custom/CustomFilterTransformParameter.h" |
| 82 | 82 |
| 83 namespace WebCore { | 83 namespace WebCore { |
| 84 | 84 |
| 85 // List of all properties we know how to compute, omitting shorthands. | 85 // List of all properties we know how to compute, omitting shorthands. |
| 86 // NOTE: Do not use this list, use computableProperties() instead | 86 // NOTE: Do not use this list, use computableProperties() instead |
| 87 // to respect runtime enabling of CSS properties. | 87 // to respect runtime enabling of CSS properties. |
| 88 static const CSSPropertyID staticComputableProperties[] = { | 88 static const CSSPropertyID staticComputableProperties[] = { |
| 89 CSSPropertyAnimationDelay, | 89 CSSPropertyAnimationDelay, |
| (...skipping 3140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3230 static const CSSPropertyID propertiesAfterSlashSeperator[3] = { CSSPropertyB
ackgroundSize, CSSPropertyBackgroundOrigin, | 3230 static const CSSPropertyID propertiesAfterSlashSeperator[3] = { CSSPropertyB
ackgroundSize, CSSPropertyBackgroundOrigin, |
| 3231 CSSPropertyB
ackgroundClip }; | 3231 CSSPropertyB
ackgroundClip }; |
| 3232 | 3232 |
| 3233 RefPtr<CSSValueList> list = CSSValueList::createSlashSeparated(); | 3233 RefPtr<CSSValueList> list = CSSValueList::createSlashSeparated(); |
| 3234 list->append(valuesForShorthandProperty(StylePropertyShorthand(CSSPropertyBa
ckground, propertiesBeforeSlashSeperator, WTF_ARRAY_LENGTH(propertiesBeforeSlash
Seperator)))); | 3234 list->append(valuesForShorthandProperty(StylePropertyShorthand(CSSPropertyBa
ckground, propertiesBeforeSlashSeperator, WTF_ARRAY_LENGTH(propertiesBeforeSlash
Seperator)))); |
| 3235 list->append(valuesForShorthandProperty(StylePropertyShorthand(CSSPropertyBa
ckground, propertiesAfterSlashSeperator, WTF_ARRAY_LENGTH(propertiesAfterSlashSe
perator)))); | 3235 list->append(valuesForShorthandProperty(StylePropertyShorthand(CSSPropertyBa
ckground, propertiesAfterSlashSeperator, WTF_ARRAY_LENGTH(propertiesAfterSlashSe
perator)))); |
| 3236 return list.release(); | 3236 return list.release(); |
| 3237 } | 3237 } |
| 3238 | 3238 |
| 3239 } // namespace WebCore | 3239 } // namespace WebCore |
| OLD | NEW |