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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/repaint/subtree-layoutstate-transform-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 <html>
2 <head>
3 <style type="text/css" media="screen">
4 .transformed {
5 height: 100px;
6 width: 100px;
7 margin: 20px;
8 transform: scale(2);
9 -webkit-transform-origin: top left;
10 }
11
12 .layoutroot {
13 height: 100px;
14 width: 100px;
15 overflow: hidden;
16 background-color: red;
17 }
18 </style>
19 </head>
20 <body>
21
22 <p>Tests repaint after layout of a subtree, inside a transformed element. You should see a large green square below.</p>
23 <div class="transformed">
24 <div class="layoutroot">
25 <div id="target" style="height: 100px; width: 100px; background-color: gre en;"></div>
26 </div>
27 </div>
28
29 </body>
30 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698