1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/table-width/conflicting-percent-widths-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,29 @@ 1.4 +<!DOCTYPE HTML> 1.5 +<html> 1.6 +<head> 1.7 +<title>Conflicting percent widths on table cells</title> 1.8 +<style type="text/css"> 1.9 + 1.10 +table, td { 1.11 + border-spacing: 0; 1.12 + border: none; 1.13 + padding: 0; 1.14 +} 1.15 + 1.16 +</style> 1.17 +</head> 1.18 +<body> 1.19 + 1.20 +<table width="400"> 1.21 + <tr> 1.22 + <td style="background: yellow" width="50%">x</td> 1.23 + <td style="background: aqua">x</td> 1.24 + </tr> 1.25 + <tr> 1.26 + <td style="background: blue" width="25%">x</td> 1.27 + <td style="background: fuchsia">x</td> 1.28 + </tr> 1.29 +</table> 1.30 + 1.31 +</body> 1.32 +</html>