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

Side by Side Diff: LayoutTests/compositing/overflow/universal-acceleration/resources/universal-overflow.css

Issue 22620002: Add layout tests for universal overflow scrolling (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: . Created 7 years, 4 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 body {
2 height: 2000px;
3 }
4 .positionFixed {
5 position: fixed;
6 }
7
8 .positionAbsolute {
9 position: absolute;
10 }
11
12 .overflow {
13 width: 300px;
14 height: 300px;
15 border: 4px solid black;
16 overflow: scroll;
17 }
18
19 .scrolled {
20 background-color: blue;
21 width: 250px;
22 height: 80px;
23 margin: 5px;
24 position: relative;
25 }
26
27 .box {
28 position: relative;
29 height: 100px;
30 width: 100px;
31 margin: 10px;
32 background-color: blue;
33 }
34
35 .onTop {
36 z-index: 2;
37 }
38
39 pre {
40 position: fixed;
41 top: 400px;
42 }
43
44 #positioned {
45 background-color: gray;
46 width: 200px;
47 height: 200px;
48 top: 150px;
49 left: 150px;
50 }
51
52 #sibling {
53 background-color: green;
54 width: 150px;
55 height: 320px;
56 top: 20px;
57 left: 20px;
58 z-index: 1;
59 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698