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

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

Issue 2859483006: cc: Enable composited border-radius scrolling.
Patch Set: fix layout tests Created 3 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp
diff --git a/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp b/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp
index d0e528f9933a976fbdcd5dad8dad013d866b9b11..958a4297ddb79d4dc5dc586830b763ce8aa8c817 100644
--- a/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp
+++ b/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp
@@ -1921,11 +1921,6 @@ bool PaintLayerScrollableArea::ComputeNeedsCompositedScrolling(
// layer->layoutObject().style()->hasBorderDecoration() (missing background
// behind dashed borders). Resolve this case, or not, and update this check
// with the results.
- if (layer->GetLayoutObject().Style()->HasBorderRadius()) {
- non_composited_main_thread_scrolling_reasons_ |=
- MainThreadScrollingReason::kHasBorderRadius;
- needs_composited_scrolling = false;
- }
if (layer->GetLayoutObject().HasClip() ||
layer->HasDescendantWithClipPath() || layer->HasAncestorWithClipPath()) {
non_composited_main_thread_scrolling_reasons_ |=

Powered by Google App Engine
This is Rietveld 408576698