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

Side by Side Diff: LayoutTests/compositing/overflow/resources/build-paint-order-lists.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 border: 1px solid black;
6 background-color: #00FFFF;
7 }
8
9 .scrolled {
10 height: 30px;
11 top: 70px;
12 background-color: gray;
13 position: relative;
14 }
15
16 .positioned {
17 width: 120px;
18 height: 240px;
19 position: absolute;
20 }
21
22 #secondChild {
23 background-color: #CC9999;
24 top: 50px;
25 }
26
27 #predecessor {
28 background-color: #990066;
29 }
30
31 #successor {
32 background-color: #000066;
33 }
34
35 #normalFlow {
36 width: 180px;
37 height: 30px;
38 margin: 10px;
39 top: -20px;
40 background-color: yellow;
41 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698