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

Side by Side Diff: third_party/WebKit/Source/web/tests/data/two_transparent_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, 11 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2
3 <style>
4 .transparent {
5 opacity: 0.5;
6 }
7
8 .content {
9 height: 500px;
10 }
11
12 div {
13 overflow: scroll;
14 width: 200px;
15 height: 300px;
16 background: green;
17 }
18
19 body {
20 height: 2000px;
21 }
22 </style>
23
24 <div id="scroller1" class="transparent">
25 <div class="content"></div>
26 </div>
27 <div id="scroller2" class="transparent">
28 <div class="content"></div>
29 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698