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

Unified Diff: third_party/WebKit/Source/web/tests/data/two_scrollable_area.html

Issue 2599043003: Add transform and background not opaque as main thread scrolling reasons (Closed)
Patch Set: Make styleRelatedMainThreadScrollingReasonTest a class Created 3 years, 12 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/web/tests/data/two_scrollable_area.html
diff --git a/third_party/WebKit/Source/web/tests/data/two_transparent_scrollable_area.html b/third_party/WebKit/Source/web/tests/data/two_scrollable_area.html
similarity index 66%
rename from third_party/WebKit/Source/web/tests/data/two_transparent_scrollable_area.html
rename to third_party/WebKit/Source/web/tests/data/two_scrollable_area.html
index 1bfbde4412ab946e4e04af1f6f5f9582eaff18d3..291863c224e26828fbb5dd14adfdb9aa444c24e0 100644
--- a/third_party/WebKit/Source/web/tests/data/two_transparent_scrollable_area.html
+++ b/third_party/WebKit/Source/web/tests/data/two_scrollable_area.html
@@ -5,6 +5,14 @@
opacity: 0.5;
}
+.transform {
+ transform: scale(0.8);
+}
+
+.background-not-opaque {
+ background: rgba(255, 0, 0, 0.5);
+}
+
.content {
height: 500px;
}
@@ -21,9 +29,9 @@ body {
}
</style>
-<div id="scroller1" class="transparent">
+<div id="scroller1">
<div class="content"></div>
</div>
-<div id="scroller2" class="transparent">
+<div id="scroller2">
<div class="content"></div>
</div>

Powered by Google App Engine
This is Rietveld 408576698