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

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

Issue 1583653002: Remove the SVG update hack. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/core/frame/FrameView.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/paint/PaintLayer.cpp
diff --git a/third_party/WebKit/Source/core/paint/PaintLayer.cpp b/third_party/WebKit/Source/core/paint/PaintLayer.cpp
index df982ee3b772a6d2fc8da5b4bab1e45cf1824700..0e0dfadda704722bb7a3aaec900f086e0ed34613 100644
--- a/third_party/WebKit/Source/core/paint/PaintLayer.cpp
+++ b/third_party/WebKit/Source/core/paint/PaintLayer.cpp
@@ -2708,14 +2708,7 @@ void PaintLayer::updateOrRemoveFilterEffectBuilder()
void PaintLayer::filterNeedsPaintInvalidation()
{
- {
- DeprecatedScheduleStyleRecalcDuringLayout marker(layoutObject()->document().lifecycle());
- // It's possible for scheduleSVGFilterLayerUpdateHack to schedule a style recalc, which
- // is a problem because this function can be called while performing layout.
- // Presumably this represents an illegal data flow of layout or compositing
- // information into the style system.
- toElement(layoutObject()->node())->scheduleSVGFilterLayerUpdateHack();
- }
+ toElement(layoutObject()->node())->scheduleSVGFilterLayerUpdateHack();
layoutObject()->setShouldDoFullPaintInvalidation();
}
« no previous file with comments | « third_party/WebKit/Source/core/frame/FrameView.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698