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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/repaint-descandant-on-ancestor-layer-move-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 body { 3 body {
4 position: absolute; 4 position: absolute;
5 left: 0px; 5 left: 0px;
6 top: 0px; 6 top: 0px;
7 right: 0px; 7 right: 0px;
8 bottom: 0px; 8 bottom: 0px;
9 } 9 }
10 body > div { 10 body > div {
11 position: absolute; 11 position: absolute;
12 left: 0; top: 10px; 12 left: 0; top: 10px;
13 } 13 }
14 div > div { 14 div > div {
15 position: relative; 15 position: relative;
16 display: inline-block; 16 display: inline-block;
17 left: 20px; 17 left: 20px;
18 top: 20px; 18 top: 20px;
19 width: 300px; 19 width: 300px;
20 background-color: papayawhip; 20 background-color: papayawhip;
21 } 21 }
22 </style> 22 </style>
23 <body> 23 <body>
24 <div id="container"> 24 <div id="container">
25 <div> 25 <div>
26 There should only be one copy of this text. 26 There should only be one copy of this text.
27 </div> 27 </div>
28 </div> 28 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698