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

Side by Side Diff: sky/engine/core/css/resolver/StyleAdjuster.cpp

Issue 850103003: Unprefix -webkit-filter and add a pixel test for it. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 11 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) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) 3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com)
4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) 4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com)
5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights reserved. 5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights reserved.
6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> 6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org>
7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> 7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org>
8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. 9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved.
10 * Copyright (C) Research In Motion Limited 2011. All rights reserved. 10 * Copyright (C) Research In Motion Limited 2011. All rights reserved.
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 case CSSPropertyOpacity: 112 case CSSPropertyOpacity:
113 case CSSPropertyTransform: 113 case CSSPropertyTransform:
114 case CSSPropertyWebkitTransform: 114 case CSSPropertyWebkitTransform:
115 case CSSPropertyTransformStyle: 115 case CSSPropertyTransformStyle:
116 case CSSPropertyWebkitTransformStyle: 116 case CSSPropertyWebkitTransformStyle:
117 case CSSPropertyPerspective: 117 case CSSPropertyPerspective:
118 case CSSPropertyWebkitPerspective: 118 case CSSPropertyWebkitPerspective:
119 case CSSPropertyWebkitMask: 119 case CSSPropertyWebkitMask:
120 case CSSPropertyWebkitMaskBoxImage: 120 case CSSPropertyWebkitMaskBoxImage:
121 case CSSPropertyWebkitClipPath: 121 case CSSPropertyWebkitClipPath:
122 case CSSPropertyWebkitFilter: 122 case CSSPropertyFilter:
123 case CSSPropertyZIndex: 123 case CSSPropertyZIndex:
124 case CSSPropertyPosition: 124 case CSSPropertyPosition:
125 return true; 125 return true;
126 default: 126 default:
127 break; 127 break;
128 } 128 }
129 } 129 }
130 return false; 130 return false;
131 } 131 }
132 132
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 // FIXME: Once we implement pagination controls, overflow-x should defau lt to hidden 254 // FIXME: Once we implement pagination controls, overflow-x should defau lt to hidden
255 // if overflow-y is set to -webkit-paged-x or -webkit-page-y. For now, w e'll let it 255 // if overflow-y is set to -webkit-paged-x or -webkit-page-y. For now, w e'll let it
256 // default to auto so we can at least scroll through the pages. 256 // default to auto so we can at least scroll through the pages.
257 style->setOverflowX(OAUTO); 257 style->setOverflowX(OAUTO);
258 } else if (style->overflowY() == OVISIBLE && style->overflowX() != OVISIBLE) { 258 } else if (style->overflowY() == OVISIBLE && style->overflowX() != OVISIBLE) {
259 style->setOverflowY(OAUTO); 259 style->setOverflowY(OAUTO);
260 } 260 }
261 } 261 }
262 262
263 } 263 }
OLDNEW
« no previous file with comments | « sky/engine/core/css/resolver/AnimatedStyleBuilder.cpp ('k') | sky/engine/core/css/resolver/StyleBuilderCustom.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698