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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/table/border-collapsing/cached-69296-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 <!--
2 Test for bug69296.
3 Collapsed borders should not disappear.
4 -->
5 <html>
6 <head>
7 <style>
8 BODY {
9 margin: 20px;
10 }
11 TABLE {
12 border-collapse: collapse;
13 }
14 TD {
15 width: 50px;
16 height: 50px;
17 border: 1px solid #333333;
18 }
19 #row1 {
20 background-color: #ddd;
21 color: #111;
22 }
23 </style>
24 </head>
25 <body>
26 <table>
27 <tr id="row1">
28 <td valign="top"/>
29 <td/>
30 <td>
31 <div>
32 <div style="width: 20px; height: 20px; background: lime; "/>
33 </div>
34 </td>
35 </tr>
36 <tr id="row2">
37 <td/>
38 <td/>
39 <td/>
40 </tr>
41 </table>
42 </body>
43 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698