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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/repaint/outline-child-repaint-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 #container {
5 position: absolute;
6 left: 10px;
7 top: 250px;
8 width: 200px;
9 height: 50px;
10 }
11 .outlined {
12 outline: 10px solid green;
13 height: 30px;
14 background-color: #DDD;
15 }
16
17 #underlay {
18 position: absolute;
19 top: 240px;
20 left: 0px;
21 width: 200px;
22 height: 30px;
23 border: 10px solid red;
24 }
25 </style>
26 </head>
27 <body>
28 <p>
29 This is a repaint test for <i><a href="https://bugs.webkit.org/show_bug. cgi?id=22159">https://bugs.webkit.org/show_bug.cgi?id=22159</a>
30 Repaint issue with outlines in child objects</i>.
31 </p>
32 <p>If the test passes, you should not see any red below</p>
33 <hr>
34
35 <div id="underlay">
36 </div>
37 <div id="container">
38 <div class="outlined">
39 </div>
40 </div>
41 </body>
42 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698