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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/repaint/resources/default.css

Issue 2327223002: Move all remaining fast/repaint tests to paint/invalidation (Closed)
Patch Set: Created 4 years, 3 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 html {
2 overflow: hidden;
3 }
4
5 div, td {
6 width: 100px;
7 height: 100px;
8 }
9
10 iframe {
11 width: 500px;
12 height: 500px;
13 }
14
15 .fixed {
16 position: fixed;
17 }
18
19 .absolute {
20 position: absolute;
21 }
22
23 .relative {
24 position: relative;
25 }
26
27 .red {
28 background-color: red;
29 }
30
31 .blue {
32 background-color: blue;
33 }
34
35 .green {
36 background-color: green;
37 }
38
39 .yellow {
40 background-color: yellow;
41 }
42
43 .rotated {
44 transform: rotate(45deg);
45 }
46
47 .clipped {
48 overflow: hidden;
49 }
50
51 .reflected {
52 -webkit-box-reflect: below 0px;
53 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698