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

Side by Side 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: Add unit test && refactoring 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2
3 <style>
4 .transparent {
5 opacity: 0.5;
6 }
7
8 div {
9 position: fixed;
bokan 2016/12/13 14:38:57 Please add another scroller that's transparent but
yigu 2016/12/13 20:54:10 position:fixed is no longer relevant to this patch
10 overflow: scroll;
11 width: 200px;
12 height: 300px;
13 background: green;
14 }
15
16 body {
17 height: 2000px;
18 }
19 </style>
20
21 <div id="scroller1" class="transparent">
22 </div>
23 <div id="scroller2" class="transparent">
24 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698