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

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

Issue 212563007: Revert of Add runtime feature and property names for unprefixed CSS Transforms (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Revert three patches 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
« no previous file with comments | « Source/core/css/resolver/StyleAdjuster.cpp ('k') | Source/core/frame/UseCounter.cpp » ('j') | 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 1722 matching lines...) Expand 10 before | Expand all | Expand 10 after
1733 CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(value); 1733 CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(value);
1734 if (Pair* pairValue = primitiveValue->getPairValue()) { 1734 if (Pair* pairValue = primitiveValue->getPairValue()) {
1735 state.style()->setAlignItems(*pairValue->first()); 1735 state.style()->setAlignItems(*pairValue->first());
1736 state.style()->setAlignItemsOverflowAlignment(*pairValue->second()); 1736 state.style()->setAlignItemsOverflowAlignment(*pairValue->second());
1737 } else { 1737 } else {
1738 state.style()->setAlignItems(*primitiveValue); 1738 state.style()->setAlignItems(*primitiveValue);
1739 } 1739 }
1740 return; 1740 return;
1741 } 1741 }
1742 1742
1743 // FIXME: crbug.com/154772 Unimplemented css-transforms properties
1744 case CSSPropertyPerspective:
1745 case CSSPropertyPerspectiveOrigin:
1746 case CSSPropertyTransform:
1747 case CSSPropertyTransformOrigin:
1748 return;
1749 // These properties are aliased and we already applied the property on the p refixed version. 1743 // These properties are aliased and we already applied the property on the p refixed version.
1750 case CSSPropertyAnimationDelay: 1744 case CSSPropertyAnimationDelay:
1751 case CSSPropertyAnimationDirection: 1745 case CSSPropertyAnimationDirection:
1752 case CSSPropertyAnimationDuration: 1746 case CSSPropertyAnimationDuration:
1753 case CSSPropertyAnimationFillMode: 1747 case CSSPropertyAnimationFillMode:
1754 case CSSPropertyAnimationIterationCount: 1748 case CSSPropertyAnimationIterationCount:
1755 case CSSPropertyAnimationName: 1749 case CSSPropertyAnimationName:
1756 case CSSPropertyAnimationPlayState: 1750 case CSSPropertyAnimationPlayState:
1757 case CSSPropertyAnimationTimingFunction: 1751 case CSSPropertyAnimationTimingFunction:
1758 case CSSPropertyTransitionDelay: 1752 case CSSPropertyTransitionDelay:
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
1879 case CSSPropertyWebkitAnimationDelay: 1873 case CSSPropertyWebkitAnimationDelay:
1880 case CSSPropertyWebkitAnimationDirection: 1874 case CSSPropertyWebkitAnimationDirection:
1881 case CSSPropertyWebkitAnimationDuration: 1875 case CSSPropertyWebkitAnimationDuration:
1882 case CSSPropertyWebkitAnimationFillMode: 1876 case CSSPropertyWebkitAnimationFillMode:
1883 case CSSPropertyWebkitAnimationIterationCount: 1877 case CSSPropertyWebkitAnimationIterationCount:
1884 case CSSPropertyWebkitAnimationName: 1878 case CSSPropertyWebkitAnimationName:
1885 case CSSPropertyWebkitAnimationPlayState: 1879 case CSSPropertyWebkitAnimationPlayState:
1886 case CSSPropertyWebkitAnimationTimingFunction: 1880 case CSSPropertyWebkitAnimationTimingFunction:
1887 case CSSPropertyWebkitAppearance: 1881 case CSSPropertyWebkitAppearance:
1888 case CSSPropertyWebkitAspectRatio: 1882 case CSSPropertyWebkitAspectRatio:
1889 case CSSPropertyBackfaceVisibility:
1890 case CSSPropertyWebkitBackfaceVisibility: 1883 case CSSPropertyWebkitBackfaceVisibility:
1891 case CSSPropertyWebkitBackgroundClip: 1884 case CSSPropertyWebkitBackgroundClip:
1892 case CSSPropertyWebkitBackgroundComposite: 1885 case CSSPropertyWebkitBackgroundComposite:
1893 case CSSPropertyWebkitBackgroundOrigin: 1886 case CSSPropertyWebkitBackgroundOrigin:
1894 case CSSPropertyWebkitBackgroundSize: 1887 case CSSPropertyWebkitBackgroundSize:
1895 case CSSPropertyWebkitBorderFit: 1888 case CSSPropertyWebkitBorderFit:
1896 case CSSPropertyWebkitBorderHorizontalSpacing: 1889 case CSSPropertyWebkitBorderHorizontalSpacing:
1897 case CSSPropertyWebkitBorderImage: 1890 case CSSPropertyWebkitBorderImage:
1898 case CSSPropertyWebkitBorderVerticalSpacing: 1891 case CSSPropertyWebkitBorderVerticalSpacing:
1899 case CSSPropertyWebkitBoxAlign: 1892 case CSSPropertyWebkitBoxAlign:
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
1962 case CSSPropertyTextUnderlinePosition: 1955 case CSSPropertyTextUnderlinePosition:
1963 case CSSPropertyWebkitTextEmphasisColor: 1956 case CSSPropertyWebkitTextEmphasisColor:
1964 case CSSPropertyWebkitTextEmphasisPosition: 1957 case CSSPropertyWebkitTextEmphasisPosition:
1965 case CSSPropertyWebkitTextEmphasisStyle: 1958 case CSSPropertyWebkitTextEmphasisStyle:
1966 case CSSPropertyWebkitTextFillColor: 1959 case CSSPropertyWebkitTextFillColor:
1967 case CSSPropertyWebkitTextSecurity: 1960 case CSSPropertyWebkitTextSecurity:
1968 case CSSPropertyWebkitTextStrokeColor: 1961 case CSSPropertyWebkitTextStrokeColor:
1969 case CSSPropertyWebkitTransformOriginX: 1962 case CSSPropertyWebkitTransformOriginX:
1970 case CSSPropertyWebkitTransformOriginY: 1963 case CSSPropertyWebkitTransformOriginY:
1971 case CSSPropertyWebkitTransformOriginZ: 1964 case CSSPropertyWebkitTransformOriginZ:
1972 case CSSPropertyTransformStyle:
1973 case CSSPropertyWebkitTransformStyle: 1965 case CSSPropertyWebkitTransformStyle:
1974 case CSSPropertyWebkitTransitionDelay: 1966 case CSSPropertyWebkitTransitionDelay:
1975 case CSSPropertyWebkitTransitionDuration: 1967 case CSSPropertyWebkitTransitionDuration:
1976 case CSSPropertyWebkitTransitionProperty: 1968 case CSSPropertyWebkitTransitionProperty:
1977 case CSSPropertyWebkitTransitionTimingFunction: 1969 case CSSPropertyWebkitTransitionTimingFunction:
1978 case CSSPropertyWebkitUserDrag: 1970 case CSSPropertyWebkitUserDrag:
1979 case CSSPropertyWebkitUserModify: 1971 case CSSPropertyWebkitUserModify:
1980 case CSSPropertyWebkitUserSelect: 1972 case CSSPropertyWebkitUserSelect:
1981 case CSSPropertyWebkitClipPath: 1973 case CSSPropertyWebkitClipPath:
1982 case CSSPropertyWebkitWrapFlow: 1974 case CSSPropertyWebkitWrapFlow:
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
2185 break; 2177 break;
2186 } 2178 }
2187 case CSSPropertyEnableBackground: 2179 case CSSPropertyEnableBackground:
2188 // Silently ignoring this property for now 2180 // Silently ignoring this property for now
2189 // http://bugs.webkit.org/show_bug.cgi?id=6022 2181 // http://bugs.webkit.org/show_bug.cgi?id=6022
2190 break; 2182 break;
2191 } 2183 }
2192 } 2184 }
2193 2185
2194 } // namespace WebCore 2186 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/css/resolver/StyleAdjuster.cpp ('k') | Source/core/frame/UseCounter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698