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

Side by Side Diff: third_party/WebKit/Source/core/css/resolver/StyleAdjuster.cpp

Issue 1490063002: Implement Paint Containment (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove unnecessary adjustStyleForContainment declaration Created 5 years 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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 || style.hasOpacity() 192 || style.hasOpacity()
193 || style.hasTransformRelatedProperty() 193 || style.hasTransformRelatedProperty()
194 || style.hasMask() 194 || style.hasMask()
195 || style.clipPath() 195 || style.clipPath()
196 || style.boxReflect() 196 || style.boxReflect()
197 || style.hasFilter() 197 || style.hasFilter()
198 || style.hasBlendMode() 198 || style.hasBlendMode()
199 || style.hasIsolation() 199 || style.hasIsolation()
200 || style.position() == FixedPosition 200 || style.position() == FixedPosition
201 || isInTopLayer(element, style) 201 || isInTopLayer(element, style)
202 || hasWillChangeThatCreatesStackingContext(style))) 202 || hasWillChangeThatCreatesStackingContext(style)
203 || style.containsPaint()))
chrishtr 2015/12/09 01:41:46 Does this work with inline elements?
leviw_travelin_and_unemployed 2015/12/09 21:09:24 Yurp yurp yurp. But there were no tests, which is
203 style.setZIndex(0); 204 style.setZIndex(0);
204 205
205 if (doesNotInheritTextDecoration(style, element)) 206 if (doesNotInheritTextDecoration(style, element))
206 style.clearAppliedTextDecorations(); 207 style.clearAppliedTextDecorations();
207 208
208 style.applyTextDecorations(); 209 style.applyTextDecorations();
209 210
210 if (style.overflowX() != OVISIBLE || style.overflowY() != OVISIBLE) 211 if (style.overflowX() != OVISIBLE || style.overflowY() != OVISIBLE)
211 adjustOverflow(style); 212 adjustOverflow(style);
212 213
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after
484 // We want to count vertical percentage paddings/margins on flex items b ecause our current 485 // We want to count vertical percentage paddings/margins on flex items b ecause our current
485 // behavior is different from the spec and we want to gather compatibili ty data. 486 // behavior is different from the spec and we want to gather compatibili ty data.
486 if (style.paddingBefore().hasPercent() || style.paddingAfter().hasPercen t()) 487 if (style.paddingBefore().hasPercent() || style.paddingAfter().hasPercen t())
487 UseCounter::count(document, UseCounter::FlexboxPercentagePaddingVert ical); 488 UseCounter::count(document, UseCounter::FlexboxPercentagePaddingVert ical);
488 if (style.marginBefore().hasPercent() || style.marginAfter().hasPercent( )) 489 if (style.marginBefore().hasPercent() || style.marginAfter().hasPercent( ))
489 UseCounter::count(document, UseCounter::FlexboxPercentageMarginVerti cal); 490 UseCounter::count(document, UseCounter::FlexboxPercentageMarginVerti cal);
490 } 491 }
491 } 492 }
492 493
493 } 494 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698