Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(196)

Side by Side Diff: Source/core/css/CSSComputedStyleDeclaration.cpp

Issue 228323007: Remove color-profile from SVG (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix one more test Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 2810 matching lines...) Expand 10 before | Expand all | Expand 10 after
2821 case CSSPropertyMask: 2821 case CSSPropertyMask:
2822 case CSSPropertyEnableBackground: 2822 case CSSPropertyEnableBackground:
2823 case CSSPropertyFilter: 2823 case CSSPropertyFilter:
2824 case CSSPropertyFloodColor: 2824 case CSSPropertyFloodColor:
2825 case CSSPropertyFloodOpacity: 2825 case CSSPropertyFloodOpacity:
2826 case CSSPropertyLightingColor: 2826 case CSSPropertyLightingColor:
2827 case CSSPropertyStopColor: 2827 case CSSPropertyStopColor:
2828 case CSSPropertyStopOpacity: 2828 case CSSPropertyStopOpacity:
2829 case CSSPropertyColorInterpolation: 2829 case CSSPropertyColorInterpolation:
2830 case CSSPropertyColorInterpolationFilters: 2830 case CSSPropertyColorInterpolationFilters:
2831 case CSSPropertyColorProfile:
2832 case CSSPropertyColorRendering: 2831 case CSSPropertyColorRendering:
2833 case CSSPropertyFill: 2832 case CSSPropertyFill:
2834 case CSSPropertyFillOpacity: 2833 case CSSPropertyFillOpacity:
2835 case CSSPropertyFillRule: 2834 case CSSPropertyFillRule:
2836 case CSSPropertyMarker: 2835 case CSSPropertyMarker:
2837 case CSSPropertyMarkerEnd: 2836 case CSSPropertyMarkerEnd:
2838 case CSSPropertyMarkerMid: 2837 case CSSPropertyMarkerMid:
2839 case CSSPropertyMarkerStart: 2838 case CSSPropertyMarkerStart:
2840 case CSSPropertyMaskType: 2839 case CSSPropertyMaskType:
2841 case CSSPropertyShapeRendering: 2840 case CSSPropertyShapeRendering:
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
3047 static const CSSPropertyID propertiesAfterSlashSeperator[3] = { CSSPropertyB ackgroundSize, CSSPropertyBackgroundOrigin, 3046 static const CSSPropertyID propertiesAfterSlashSeperator[3] = { CSSPropertyB ackgroundSize, CSSPropertyBackgroundOrigin,
3048 CSSPropertyB ackgroundClip }; 3047 CSSPropertyB ackgroundClip };
3049 3048
3050 RefPtrWillBeRawPtr<CSSValueList> list = CSSValueList::createSlashSeparated() ; 3049 RefPtrWillBeRawPtr<CSSValueList> list = CSSValueList::createSlashSeparated() ;
3051 list->append(valuesForShorthandProperty(StylePropertyShorthand(CSSPropertyBa ckground, propertiesBeforeSlashSeperator, WTF_ARRAY_LENGTH(propertiesBeforeSlash Seperator)))); 3050 list->append(valuesForShorthandProperty(StylePropertyShorthand(CSSPropertyBa ckground, propertiesBeforeSlashSeperator, WTF_ARRAY_LENGTH(propertiesBeforeSlash Seperator))));
3052 list->append(valuesForShorthandProperty(StylePropertyShorthand(CSSPropertyBa ckground, propertiesAfterSlashSeperator, WTF_ARRAY_LENGTH(propertiesAfterSlashSe perator)))); 3051 list->append(valuesForShorthandProperty(StylePropertyShorthand(CSSPropertyBa ckground, propertiesAfterSlashSeperator, WTF_ARRAY_LENGTH(propertiesAfterSlashSe perator))));
3053 return list.release(); 3052 return list.release();
3054 } 3053 }
3055 3054
3056 } // namespace WebCore 3055 } // namespace WebCore
OLDNEW
« no previous file with comments | « LayoutTests/webexposed/css-properties-as-js-properties-expected.txt ('k') | Source/core/css/CSSProperty.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698