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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/table/border-collapsing/cached-69296-expected.html

Issue 2005553002: Convert collapsed border repaint tests to reftests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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
1 <!-- 1 <!--
2 Test for bug69296. 2 Test for bug69296.
3 Collapsed borders should not disappear. 3 Collapsed borders should not disappear.
4 --> 4 -->
5 <html> 5 <html>
6 <head> 6 <head>
7 <style> 7 <style>
8 BODY { 8 BODY {
9 margin: 20px; 9 margin: 20px;
10 } 10 }
11 TABLE { 11 TABLE {
12 border-collapse: collapse; 12 border-collapse: collapse;
13 } 13 }
14 TD { 14 TD {
15 width: 50px; 15 width: 50px;
16 height: 50px; 16 height: 50px;
17 border: 1px solid #333333; 17 border: 1px solid #333333;
18 } 18 }
19 #row1 {
20 background-color: #ddd;
21 color: #111;
22 }
19 </style> 23 </style>
20 </head> 24 </head>
21 <body> 25 <body>
22 <table> 26 <table>
23 <tr id="row1"> 27 <tr id="row1">
24 <td valign="top"/> 28 <td valign="top"/>
25 <td/> 29 <td/>
26 <td> 30 <td>
27 <div> 31 <div>
28 <div style="width: 20px; height: 20px; background: lime; "/> 32 <div style="width: 20px; height: 20px; background: lime; "/>
29 </div> 33 </div>
30 </td> 34 </td>
31 </tr> 35 </tr>
32 <tr id="row2"> 36 <tr id="row2">
33 <td/> 37 <td/>
34 <td/> 38 <td/>
35 <td/> 39 <td/>
36 </tr> 40 </tr>
37 </table> 41 </table>
38 </body> 42 </body>
39 </html> 43 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698