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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/repaint/crbug-371640-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 <style>
3 #wrapper {
4 visibility: hidden;
5 position: absolute;
6 width: 600px;
7 }
8 .outer { float: left; }
9 .inner {
10 float: left ;
11 height: 100px;
12 position: relative;
13 width: 260px;
14 }
15 .abs_pos { position: absolute; }
16 #container { float: right; }
17 .item {
18 visibility: visible;
19 background-color: green;
20 width: 100px;
21 height: 100px;
22 }
23 </style>
24
25 <p>This is a reduction for http://crbug.com/371640.</p>
26 <p>The test PASSES if you see 1 green square and no red square.</p>
27
28 <div id='wrapper'>
29 <div id='container'>
30 <div id='keep_outer' class="outer">
31 <div id='keep_inner' class="inner">
32 <div class="abs_pos">
33 <div id='keep' class="item">&nbsp;</div>
34 </div>
35 </div>
36 </div>
37 </div>
38 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698