OLD | NEW |
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 1723 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 | 1743 // FIXME: crbug.com/154772 Unimplemented css-transforms properties |
1744 case CSSPropertyBackfaceVisibility: | |
1745 case CSSPropertyPerspective: | 1744 case CSSPropertyPerspective: |
1746 case CSSPropertyPerspectiveOrigin: | 1745 case CSSPropertyPerspectiveOrigin: |
1747 case CSSPropertyTransform: | 1746 case CSSPropertyTransform: |
1748 case CSSPropertyTransformOrigin: | 1747 case CSSPropertyTransformOrigin: |
1749 return; | 1748 return; |
1750 // These properties are aliased and we already applied the property on the p
refixed version. | 1749 // These properties are aliased and we already applied the property on the p
refixed version. |
1751 case CSSPropertyAnimationDelay: | 1750 case CSSPropertyAnimationDelay: |
1752 case CSSPropertyAnimationDirection: | 1751 case CSSPropertyAnimationDirection: |
1753 case CSSPropertyAnimationDuration: | 1752 case CSSPropertyAnimationDuration: |
1754 case CSSPropertyAnimationFillMode: | 1753 case CSSPropertyAnimationFillMode: |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1880 case CSSPropertyWebkitAnimationDelay: | 1879 case CSSPropertyWebkitAnimationDelay: |
1881 case CSSPropertyWebkitAnimationDirection: | 1880 case CSSPropertyWebkitAnimationDirection: |
1882 case CSSPropertyWebkitAnimationDuration: | 1881 case CSSPropertyWebkitAnimationDuration: |
1883 case CSSPropertyWebkitAnimationFillMode: | 1882 case CSSPropertyWebkitAnimationFillMode: |
1884 case CSSPropertyWebkitAnimationIterationCount: | 1883 case CSSPropertyWebkitAnimationIterationCount: |
1885 case CSSPropertyWebkitAnimationName: | 1884 case CSSPropertyWebkitAnimationName: |
1886 case CSSPropertyWebkitAnimationPlayState: | 1885 case CSSPropertyWebkitAnimationPlayState: |
1887 case CSSPropertyWebkitAnimationTimingFunction: | 1886 case CSSPropertyWebkitAnimationTimingFunction: |
1888 case CSSPropertyWebkitAppearance: | 1887 case CSSPropertyWebkitAppearance: |
1889 case CSSPropertyWebkitAspectRatio: | 1888 case CSSPropertyWebkitAspectRatio: |
| 1889 case CSSPropertyBackfaceVisibility: |
1890 case CSSPropertyWebkitBackfaceVisibility: | 1890 case CSSPropertyWebkitBackfaceVisibility: |
1891 case CSSPropertyWebkitBackgroundClip: | 1891 case CSSPropertyWebkitBackgroundClip: |
1892 case CSSPropertyWebkitBackgroundComposite: | 1892 case CSSPropertyWebkitBackgroundComposite: |
1893 case CSSPropertyWebkitBackgroundOrigin: | 1893 case CSSPropertyWebkitBackgroundOrigin: |
1894 case CSSPropertyWebkitBackgroundSize: | 1894 case CSSPropertyWebkitBackgroundSize: |
1895 case CSSPropertyWebkitBorderFit: | 1895 case CSSPropertyWebkitBorderFit: |
1896 case CSSPropertyWebkitBorderHorizontalSpacing: | 1896 case CSSPropertyWebkitBorderHorizontalSpacing: |
1897 case CSSPropertyWebkitBorderImage: | 1897 case CSSPropertyWebkitBorderImage: |
1898 case CSSPropertyWebkitBorderVerticalSpacing: | 1898 case CSSPropertyWebkitBorderVerticalSpacing: |
1899 case CSSPropertyWebkitBoxAlign: | 1899 case CSSPropertyWebkitBoxAlign: |
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 |
OLD | NEW |