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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/compositing/repaint-via-layout-offset-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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <style> 2 <style>
3 #container { 3 #container {
4 position: absolute; 4 position: absolute;
5 z-index: 0; 5 z-index: 0;
6 left: 50px; 6 left: 50px;
7 top: 50px; 7 top: 50px;
8 } 8 }
9 9
10 .child { 10 .child {
11 position: absolute; 11 position: absolute;
12 width: 40px; 12 width: 40px;
13 height: 40px; 13 height: 40px;
14 background-color: red; 14 background-color: red;
15 } 15 }
16 16
17 .embiggen { 17 .embiggen {
18 width: 50px; 18 width: 50px;
19 height: 50px; 19 height: 50px;
20 background-color: green; 20 background-color: green;
21 } 21 }
22 </style> 22 </style>
23 <div style="width:200px; height:200px; background-color: lightblue"></div> 23 <div style="width:200px; height:200px; background-color: lightblue"></div>
24 <div id="container"> 24 <div id="container">
25 <span class="child"></span> 25 <span class="child"></span>
26 <span class="child embiggen"></span> 26 <span class="child embiggen"></span>
27 </div> 27 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698