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

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

Issue 2495893002: Implement incremental paint property tree rebuilding (Closed)
Patch Set: Suppress main thread scrolling invalidation failures Created 4 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/PaintPropertyTreeBuilderTest.cpp
diff --git a/third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilderTest.cpp b/third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilderTest.cpp
index accf69f52cf0603e8ca31dd810335bd506218444..dfc4dd7649571825a77990f8fc470fb8793b69ca 100644
--- a/third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilderTest.cpp
+++ b/third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilderTest.cpp
@@ -2626,8 +2626,11 @@ TEST_P(PaintPropertyTreeBuilderTest,
MainThreadScrollingReason::kThreadedScrollingDisabled));
}
-TEST_P(PaintPropertyTreeBuilderTest,
- BackgroundAttachmentFixedMainThreadScrollReasonsWithNestedScrollers) {
+// Disabled due to missing main thread scrolling property invalidation support.
+// See: https://crbug.com/664672
+TEST_P(
+ PaintPropertyTreeBuilderTest,
+ DISABLED_BackgroundAttachmentFixedMainThreadScrollReasonsWithNestedScrollers) {
setBodyInnerHTML(
"<style>"
" #overflowA {"
@@ -2712,8 +2715,11 @@ TEST_P(PaintPropertyTreeBuilderTest,
MainThreadScrollingReason::kHasBackgroundAttachmentFixedObjects));
}
-TEST_P(PaintPropertyTreeBuilderTest,
- BackgroundAttachmentFixedMainThreadScrollReasonsWithFixedScroller) {
+// Disabled due to missing main thread scrolling property invalidation support.
+// See: https://crbug.com/664672
+TEST_P(
+ PaintPropertyTreeBuilderTest,
+ DISABLED_BackgroundAttachmentFixedMainThreadScrollReasonsWithFixedScroller) {
setBodyInnerHTML(
"<style>"
" #overflowA {"

Powered by Google App Engine
This is Rietveld 408576698