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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/repaint/reflection-invalidation-positioned-child-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 body {
4 margin: 0;
5 }
6 #box {
7 width: 100px;
8 height: 100px;
9 background-color: green;
10 -webkit-box-reflect: below 20px;
11 }
12 #positioned {
13 position: absolute;
14 top: 10px;
15 left: 400px;
16 width: 50px;
17 height: 50px;
18 background-color: blue;
19 }
20 </style>
21 <!--
22 Tests paint invalidation of positioned object when its ancestor changes reflecti on.
23 Passes if there is no red.
24 -->
25 <div id="box">
26 <div id="positioned"></div>
27 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698