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

Side by Side Diff: third_party/WebKit/LayoutTests/compositing/repaint/invalidations-on-composited-layers-expected.html

Issue 2321183002: Move repaint tests (except for svg/) 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 <!DOCTYPE html>
2
3 <!--
4 This test checks that repaint testing works with composited layers.
5 -->
6
7 <html>
8 <head>
9 <style type="text/css">
10 #parent {
11 width: 400px;
12 height: 400px;
13 background: green;
14 }
15
16 #child {
17 position: relative;
18 left: 50px;
19 top: 50px;
20 width: 75px;
21 height: 75px;
22 background: blue;
23 }
24
25 </style>
26 </head>
27 <body>
28 <div id="parent">
29 <div id="child"></div>
30 </div>
31 </body>
32 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698