OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <style type="text/css" media="screen"> | 3 <style type="text/css" media="screen"> |
4 #container { | 4 #container { |
5 position: absolute; | 5 position: absolute; |
6 left: 10px; | 6 left: 10px; |
7 top: 250px; | 7 top: 250px; |
8 width: 200px; | 8 width: 200px; |
9 height: 50px; | 9 height: 50px; |
10 } | 10 } |
11 .outlined { | 11 .outlined { |
12 outline: 10px solid green; | 12 outline: 10px solid green; |
13 height: 30px; | 13 height: 30px; |
14 background-color: #DDD; | 14 background-color: #DDD; |
15 } | 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 } |
16 </style> | 25 </style> |
17 </head> | 26 </head> |
18 <body"> | 27 <body> |
19 <p> | 28 <p> |
20 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> | 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> |
21 Repaint issue with outlines in child objects</i>. | 30 Repaint issue with outlines in child objects</i>. |
22 </p> | 31 </p> |
23 <p>If the test passes, you should not see any red below</p> | 32 <p>If the test passes, you should not see any red below</p> |
24 <hr> | 33 <hr> |
25 | 34 |
| 35 <div id="underlay"> |
| 36 </div> |
26 <div id="container"> | 37 <div id="container"> |
27 <div class="outlined"> | 38 <div class="outlined"> |
28 </div> | 39 </div> |
29 </div> | 40 </div> |
30 </body> | 41 </body> |
31 </html> | 42 </html> |
OLD | NEW |