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

Unified Diff: third_party/WebKit/Source/core/paint/PaintLayerClipper.cpp

Issue 1413523007: Simplify computation of the invalidation rect for a frame. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/paint/PaintLayerClipper.cpp
diff --git a/third_party/WebKit/Source/core/paint/PaintLayerClipper.cpp b/third_party/WebKit/Source/core/paint/PaintLayerClipper.cpp
index c3eddeeed88edb799b2a6ed772320716b6c6a302..1fc520f13225eab4b812b880ceb86b70d818960b 100644
--- a/third_party/WebKit/Source/core/paint/PaintLayerClipper.cpp
+++ b/third_party/WebKit/Source/core/paint/PaintLayerClipper.cpp
@@ -172,6 +172,7 @@ void PaintLayerClipper::clearClipRectsIncludingDescendants(ClipRectsCacheSlot ca
LayoutRect PaintLayerClipper::childrenClipRect() const
{
+ DisableCompositingQueryAsserts disabler;
tommycli 2015/11/03 20:10:22 Previous usage of this had this comment: // FIXME
chrishtr 2015/11/03 21:24:56 Forgot to update in the latest patchset. This meth
// FIXME: border-radius not accounted for.
// FIXME: Flow thread based columns not accounted for.
PaintLayer* clippingRootLayer = clippingRootForPainting();

Powered by Google App Engine
This is Rietveld 408576698