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

Side by Side Diff: third_party/WebKit/Source/core/layout/svg/LayoutSVGContainer.cpp

Issue 1996543002: Avoid using forced layout to trigger paint invalidation for SVG containers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 6 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) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005, 2007, 2008 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005, 2007, 2008 Rob Buis <buis@kde.org>
4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> 4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org>
5 * Copyright (C) 2009 Google, Inc. All rights reserved. 5 * Copyright (C) 2009 Google, Inc. All rights reserved.
6 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> 6 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org>
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 48
49 void LayoutSVGContainer::layout() 49 void LayoutSVGContainer::layout()
50 { 50 {
51 ASSERT(needsLayout()); 51 ASSERT(needsLayout());
52 LayoutAnalyzer::Scope analyzer(*this); 52 LayoutAnalyzer::Scope analyzer(*this);
53 53
54 // Allow LayoutSVGViewportContainer to update its viewport. 54 // Allow LayoutSVGViewportContainer to update its viewport.
55 calcViewport(); 55 calcViewport();
56 56
57 // Allow LayoutSVGTransformableContainer to update its transform. 57 // Allow LayoutSVGTransformableContainer to update its transform.
58 bool updatedTransform = calculateLocalTransform(); 58 unsigned updatedTransform = calculateLocalTransform();
59 m_didScreenScaleFactorChange = updatedTransform || SVGLayoutSupport::screenS caleFactorChanged(parent()); 59 m_didScreenScaleFactorChange =
60 (updatedTransform & ScaleChange) || SVGLayoutSupport::screenScaleFactorC hanged(parent());
60 61
61 // LayoutSVGViewportContainer needs to set the 'layout size changed' flag. 62 // LayoutSVGViewportContainer needs to set the 'layout size changed' flag.
62 determineIfLayoutSizeChanged(); 63 determineIfLayoutSizeChanged();
63 64
64 // When hasRelativeLengths() is false, no descendants have relative lengths 65 // When hasRelativeLengths() is false, no descendants have relative lengths
65 // (hence no one is interested in viewport size changes). 66 // (hence no one is interested in viewport size changes).
66 bool layoutSizeChanged = element()->hasRelativeLengths() 67 bool layoutSizeChanged = element()->hasRelativeLengths()
67 && SVGLayoutSupport::layoutSizeOfNearestViewportChanged(this); 68 && SVGLayoutSupport::layoutSizeOfNearestViewportChanged(this);
68 69
69 SVGLayoutSupport::layoutChildren(firstChild(), false, m_didScreenScaleFactor Change, layoutSizeChanged); 70 SVGLayoutSupport::layoutChildren(firstChild(), false, m_didScreenScaleFactor Change, layoutSizeChanged);
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 updateHitTestResult(result, localLayoutPoint); 195 updateHitTestResult(result, localLayoutPoint);
195 if (result.addNodeToListBasedTestResult(element(), localLayoutPoint) == StopHitTesting) 196 if (result.addNodeToListBasedTestResult(element(), localLayoutPoint) == StopHitTesting)
196 return true; 197 return true;
197 } 198 }
198 } 199 }
199 // 16.4: "If there are no graphics elements whose relevant graphics content is under the pointer (i.e., there is no target element), the event is not dispat ched." 200 // 16.4: "If there are no graphics elements whose relevant graphics content is under the pointer (i.e., there is no target element), the event is not dispat ched."
200 return false; 201 return false;
201 } 202 }
202 203
203 } // namespace blink 204 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698