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

Side by Side Diff: Source/core/css/resolver/StyleBuilderCustom.cpp

Issue 211123002: CSS Transforms: Implement transform-style (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
4 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) 4 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com)
5 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) 5 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com)
6 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights reserved. 6 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights reserved.
7 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> 7 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org>
8 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> 8 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org>
9 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 9 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
10 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. 10 * Copyright (c) 2011, Code Aurora Forum. All rights reserved.
(...skipping 1728 matching lines...) Expand 10 before | Expand all | Expand 10 after
1739 } 1739 }
1740 return; 1740 return;
1741 } 1741 }
1742 1742
1743 // FIXME: crbug.com/154772 Unimplemented css-transforms properties 1743 // FIXME: crbug.com/154772 Unimplemented css-transforms properties
1744 case CSSPropertyBackfaceVisibility: 1744 case CSSPropertyBackfaceVisibility:
1745 case CSSPropertyPerspective: 1745 case CSSPropertyPerspective:
1746 case CSSPropertyPerspectiveOrigin: 1746 case CSSPropertyPerspectiveOrigin:
1747 case CSSPropertyTransform: 1747 case CSSPropertyTransform:
1748 case CSSPropertyTransformOrigin: 1748 case CSSPropertyTransformOrigin:
1749 case CSSPropertyTransformStyle:
1750 ASSERT_NOT_REACHED(); 1749 ASSERT_NOT_REACHED();
1751 break; 1750 break;
1752 // These properties are aliased and we already applied the property on the p refixed version. 1751 // These properties are aliased and we already applied the property on the p refixed version.
1753 case CSSPropertyAnimationDelay: 1752 case CSSPropertyAnimationDelay:
1754 case CSSPropertyAnimationDirection: 1753 case CSSPropertyAnimationDirection:
1755 case CSSPropertyAnimationDuration: 1754 case CSSPropertyAnimationDuration:
1756 case CSSPropertyAnimationFillMode: 1755 case CSSPropertyAnimationFillMode:
1757 case CSSPropertyAnimationIterationCount: 1756 case CSSPropertyAnimationIterationCount:
1758 case CSSPropertyAnimationName: 1757 case CSSPropertyAnimationName:
1759 case CSSPropertyAnimationPlayState: 1758 case CSSPropertyAnimationPlayState:
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
1964 case CSSPropertyTextUnderlinePosition: 1963 case CSSPropertyTextUnderlinePosition:
1965 case CSSPropertyWebkitTextEmphasisColor: 1964 case CSSPropertyWebkitTextEmphasisColor:
1966 case CSSPropertyWebkitTextEmphasisPosition: 1965 case CSSPropertyWebkitTextEmphasisPosition:
1967 case CSSPropertyWebkitTextEmphasisStyle: 1966 case CSSPropertyWebkitTextEmphasisStyle:
1968 case CSSPropertyWebkitTextFillColor: 1967 case CSSPropertyWebkitTextFillColor:
1969 case CSSPropertyWebkitTextSecurity: 1968 case CSSPropertyWebkitTextSecurity:
1970 case CSSPropertyWebkitTextStrokeColor: 1969 case CSSPropertyWebkitTextStrokeColor:
1971 case CSSPropertyWebkitTransformOriginX: 1970 case CSSPropertyWebkitTransformOriginX:
1972 case CSSPropertyWebkitTransformOriginY: 1971 case CSSPropertyWebkitTransformOriginY:
1973 case CSSPropertyWebkitTransformOriginZ: 1972 case CSSPropertyWebkitTransformOriginZ:
1973 case CSSPropertyTransformStyle:
1974 case CSSPropertyWebkitTransformStyle: 1974 case CSSPropertyWebkitTransformStyle:
1975 case CSSPropertyWebkitTransitionDelay: 1975 case CSSPropertyWebkitTransitionDelay:
1976 case CSSPropertyWebkitTransitionDuration: 1976 case CSSPropertyWebkitTransitionDuration:
1977 case CSSPropertyWebkitTransitionProperty: 1977 case CSSPropertyWebkitTransitionProperty:
1978 case CSSPropertyWebkitTransitionTimingFunction: 1978 case CSSPropertyWebkitTransitionTimingFunction:
1979 case CSSPropertyWebkitUserDrag: 1979 case CSSPropertyWebkitUserDrag:
1980 case CSSPropertyWebkitUserModify: 1980 case CSSPropertyWebkitUserModify:
1981 case CSSPropertyWebkitUserSelect: 1981 case CSSPropertyWebkitUserSelect:
1982 case CSSPropertyWebkitClipPath: 1982 case CSSPropertyWebkitClipPath:
1983 case CSSPropertyWebkitWrapFlow: 1983 case CSSPropertyWebkitWrapFlow:
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
2186 break; 2186 break;
2187 } 2187 }
2188 case CSSPropertyEnableBackground: 2188 case CSSPropertyEnableBackground:
2189 // Silently ignoring this property for now 2189 // Silently ignoring this property for now
2190 // http://bugs.webkit.org/show_bug.cgi?id=6022 2190 // http://bugs.webkit.org/show_bug.cgi?id=6022
2191 break; 2191 break;
2192 } 2192 }
2193 } 2193 }
2194 2194
2195 } // namespace WebCore 2195 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698