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

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

Issue 2204503002: ResizeObserver pt6: integration (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Restore missing code that was blown away by rebase Created 4 years, 4 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
« no previous file with comments | « third_party/WebKit/Source/core/layout/svg/LayoutSVGRect.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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, 2008 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005, 2008 Rob Buis <buis@kde.org>
4 * Copyright (C) 2005, 2007 Eric Seidel <eric@webkit.org> 4 * Copyright (C) 2005, 2007 Eric Seidel <eric@webkit.org>
5 * Copyright (C) 2009 Google, Inc. 5 * Copyright (C) 2009 Google, Inc.
6 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> 6 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org>
7 * Copyright (C) Research In Motion Limited 2010. All rights reserved. 7 * Copyright (C) Research In Motion Limited 2010. All rights reserved.
8 * Copyright (C) 2009 Jeff Schiller <codedread@gmail.com> 8 * Copyright (C) 2009 Jeff Schiller <codedread@gmail.com>
9 * Copyright (C) 2011 Renata Hodovan <reni@webkit.org> 9 * Copyright (C) 2011 Renata Hodovan <reni@webkit.org>
10 * Copyright (C) 2011 University of Szeged 10 * Copyright (C) 2011 University of Szeged
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 return 1; 73 return 1;
74 return toSVGPathElement(*element()).pathLengthScaleFactor(); 74 return toSVGPathElement(*element()).pathLengthScaleFactor();
75 } 75 }
76 76
77 void LayoutSVGShape::updateShapeFromElement() 77 void LayoutSVGShape::updateShapeFromElement()
78 { 78 {
79 createPath(); 79 createPath();
80 80
81 m_fillBoundingBox = calculateObjectBoundingBox(); 81 m_fillBoundingBox = calculateObjectBoundingBox();
82 m_strokeBoundingBox = calculateStrokeBoundingBox(); 82 m_strokeBoundingBox = calculateStrokeBoundingBox();
83 if (element())
84 element()->setNeedsResizeObserverUpdate();
83 } 85 }
84 86
85 FloatRect LayoutSVGShape::hitTestStrokeBoundingBox() const 87 FloatRect LayoutSVGShape::hitTestStrokeBoundingBox() const
86 { 88 {
87 if (style()->svgStyle().hasStroke()) 89 if (style()->svgStyle().hasStroke())
88 return m_strokeBoundingBox; 90 return m_strokeBoundingBox;
89 91
90 // Implementation of http://dev.w3.org/fxtf/css-masking-1/#compute-stroke-bo unding-box 92 // Implementation of http://dev.w3.org/fxtf/css-masking-1/#compute-stroke-bo unding-box
91 // for the <rect> / <ellipse> / <circle> case except that we ignore whether 93 // for the <rect> / <ellipse> / <circle> case except that we ignore whether
92 // the stroke is none. 94 // the stroke is none.
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
300 } 302 }
301 303
302 LayoutSVGShapeRareData& LayoutSVGShape::ensureRareData() const 304 LayoutSVGShapeRareData& LayoutSVGShape::ensureRareData() const
303 { 305 {
304 if (!m_rareData) 306 if (!m_rareData)
305 m_rareData = wrapUnique(new LayoutSVGShapeRareData()); 307 m_rareData = wrapUnique(new LayoutSVGShapeRareData());
306 return *m_rareData.get(); 308 return *m_rareData.get();
307 } 309 }
308 310
309 } // namespace blink 311 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/layout/svg/LayoutSVGRect.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698