tenfourfox/layout/reftests/w3c-css/submitted/values3/calc-width-table-fixed-1-ref.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

29 lines
603 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<title>CSS Reference: width: calc() on table-layout: auto tables</title>
<link rel="author" title="L. David Baron" href="http://dbaron.org/">
<meta name="flags" content="">
<style type="text/css">
table { table-layout: fixed; width: 500px; border-spacing: 0 }
</style>
</head>
<body>
<table border>
<tr>
<td style="width: 500px">x</td>
<td style="width: 100px">y</td>
</table>
<table border>
<tr>
<td>x</td>
<td style="width: 100px">y</td>
</table>
<table border>
<tr>
<td>x</td>
<td style="width: 100px">y</td>
</table>
</body>
</html>