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

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

Issue 2565223002: Add more specific metrics for main thread scrolling reasons (Closed)
Patch Set: Relocate the logic of updating mainThreadScrollingFromStyle Created 4 years 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_transparent_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_transparent_scrollable_area.html
new file mode 100644
index 0000000000000000000000000000000000000000..6e47f6f5d5152a07424438c6fafae9413ce9d4d0
--- /dev/null
+++ b/third_party/WebKit/Source/web/tests/data/two_transparent_scrollable_area.html
@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+
+<style>
+.transparent {
+ opacity: 0.5;
+}
+
+div {
+ overflow: scroll;
+ width: 200px;
+ height: 300px;
+ background: green;
+}
+
+body {
+ height: 2000px;
+}
+</style>
+
+<div id="scroller1" class="transparent">
+</div>
+<div id="scroller2" class="transparent">
+</div>

Powered by Google App Engine
This is Rietveld 408576698