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

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: Rebase. 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/css/resolver/StyleAdjuster.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 return; 1749 return;
1751 // These properties are aliased and we already applied the property on the p refixed version. 1750 // These properties are aliased and we already applied the property on the p refixed version.
1752 case CSSPropertyAnimationDelay: 1751 case CSSPropertyAnimationDelay:
1753 case CSSPropertyAnimationDirection: 1752 case CSSPropertyAnimationDirection:
1754 case CSSPropertyAnimationDuration: 1753 case CSSPropertyAnimationDuration:
1755 case CSSPropertyAnimationFillMode: 1754 case CSSPropertyAnimationFillMode:
1756 case CSSPropertyAnimationIterationCount: 1755 case CSSPropertyAnimationIterationCount:
1757 case CSSPropertyAnimationName: 1756 case CSSPropertyAnimationName:
1758 case CSSPropertyAnimationPlayState: 1757 case CSSPropertyAnimationPlayState:
1759 case CSSPropertyAnimationTimingFunction: 1758 case CSSPropertyAnimationTimingFunction:
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
1961 case CSSPropertyTextUnderlinePosition: 1960 case CSSPropertyTextUnderlinePosition:
1962 case CSSPropertyWebkitTextEmphasisColor: 1961 case CSSPropertyWebkitTextEmphasisColor:
1963 case CSSPropertyWebkitTextEmphasisPosition: 1962 case CSSPropertyWebkitTextEmphasisPosition:
1964 case CSSPropertyWebkitTextEmphasisStyle: 1963 case CSSPropertyWebkitTextEmphasisStyle:
1965 case CSSPropertyWebkitTextFillColor: 1964 case CSSPropertyWebkitTextFillColor:
1966 case CSSPropertyWebkitTextSecurity: 1965 case CSSPropertyWebkitTextSecurity:
1967 case CSSPropertyWebkitTextStrokeColor: 1966 case CSSPropertyWebkitTextStrokeColor:
1968 case CSSPropertyWebkitTransformOriginX: 1967 case CSSPropertyWebkitTransformOriginX:
1969 case CSSPropertyWebkitTransformOriginY: 1968 case CSSPropertyWebkitTransformOriginY:
1970 case CSSPropertyWebkitTransformOriginZ: 1969 case CSSPropertyWebkitTransformOriginZ:
1970 case CSSPropertyTransformStyle:
1971 case CSSPropertyWebkitTransformStyle: 1971 case CSSPropertyWebkitTransformStyle:
1972 case CSSPropertyWebkitTransitionDelay: 1972 case CSSPropertyWebkitTransitionDelay:
1973 case CSSPropertyWebkitTransitionDuration: 1973 case CSSPropertyWebkitTransitionDuration:
1974 case CSSPropertyWebkitTransitionProperty: 1974 case CSSPropertyWebkitTransitionProperty:
1975 case CSSPropertyWebkitTransitionTimingFunction: 1975 case CSSPropertyWebkitTransitionTimingFunction:
1976 case CSSPropertyWebkitUserDrag: 1976 case CSSPropertyWebkitUserDrag:
1977 case CSSPropertyWebkitUserModify: 1977 case CSSPropertyWebkitUserModify:
1978 case CSSPropertyWebkitUserSelect: 1978 case CSSPropertyWebkitUserSelect:
1979 case CSSPropertyWebkitClipPath: 1979 case CSSPropertyWebkitClipPath:
1980 case CSSPropertyWebkitWrapFlow: 1980 case CSSPropertyWebkitWrapFlow:
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
2183 break; 2183 break;
2184 } 2184 }
2185 case CSSPropertyEnableBackground: 2185 case CSSPropertyEnableBackground:
2186 // Silently ignoring this property for now 2186 // Silently ignoring this property for now
2187 // http://bugs.webkit.org/show_bug.cgi?id=6022 2187 // http://bugs.webkit.org/show_bug.cgi?id=6022
2188 break; 2188 break;
2189 } 2189 }
2190 } 2190 }
2191 2191
2192 } // namespace WebCore 2192 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/css/resolver/StyleAdjuster.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698