1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/bugs/167496-1-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,47 @@ 1.4 +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 1.5 +<html> 1.6 +<head> 1.7 + <meta http-equiv="content-type" 1.8 + content="text/html; charset=ISO-8859-1"> 1.9 + <title>table border/css test</title> 1.10 + <style type="text/css"> 1.11 +<!-- 1.12 +table { 1.13 + border: 1px solid blue; 1.14 + border-collapse: collapse; 1.15 +} 1.16 + 1.17 +th { 1.18 + border: 1px outset silver; 1.19 +} 1.20 + 1.21 +td { 1.22 + border: 1px outset silver; 1.23 +} 1.24 +--> 1.25 + </style> 1.26 +</head> 1.27 +<body> 1.28 + 1.29 + 1.30 +<table> 1.31 + <tbody> 1.32 + <tr> 1.33 + <th>Table-header</th> 1.34 + <th>Table-header</th> 1.35 + <th>Table-header</th> 1.36 + </tr> 1.37 + <tr> 1.38 + <td>Table-data</td> 1.39 + <td>Table-data</td> 1.40 + <td>Table-data</td> 1.41 + </tr> 1.42 + <tr> 1.43 + <td>Table-data</td> 1.44 + <td>Table-data</td> 1.45 + <td>Table-data</td> 1.46 + </tr> 1.47 + </tbody> 1.48 +</table> 1.49 +</body> 1.50 +</html>