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

Side by Side Diff: LayoutTests/compositing/overflow/resources/automatically-opt-into-composited-scrolling.css

Issue 244193002: Enable universal accelerated overflow scroll (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update test expectations for crashing test. Created 6 years, 8 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 .container {
2 width: 200px;
3 height: 200px;
4 overflow: scroll;
5 margin: 20px;
6 border: 1px solid black;
7 background-color: #00FFFF;
8 }
9
10 .scrolled {
11 width: 180px;
12 height: 30px;
13 margin: 10px;
14 top: 70px;
15 background-color: gray;
16 position: relative;
17 }
18
19 .positioned {
20 width: 120px;
21 height: 240px;
22 position: absolute;
23 }
24
25 #secondChild {
26 background-color: #CC9999;
27 top: 50px;
28 }
29
30 #predecessor {
31 left: 20px;
32 top: 20px;
33 background-color: #990066;
34 }
35
36 #successor {
37 left: 20px;
38 top: 20px;
39 background-color: #000066;
40 }
41
42 #normalFlow {
43 width: 180px;
44 height: 30px;
45 margin: 10px;
46 background-color: yellow;
47 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698