1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/w3c-css/submitted/values3/calc-height-table-1-ref.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>CSS Reference: Test that height:calc() with no percentages has an effect on inner table elements</title> 1.8 + <link rel="author" title="L. David Baron" href="http://dbaron.org/"> 1.9 + <meta name="flags" content=""> 1.10 +<style type="text/css"> 1.11 +tbody, tr, td { 1.12 + height: 500px; 1.13 + min-height: 700px; 1.14 + max-height: 2px; 1.15 +} 1.16 +</style> 1.17 +</head> 1.18 +<body> 1.19 +<table border> 1.20 + <tbody> 1.21 + <tr> 1.22 + <td>cell</td> 1.23 + <td>cell</td> 1.24 + </tr> 1.25 + <tr> 1.26 + <td>cell</td> 1.27 + <td>cell</td> 1.28 + </tr> 1.29 + </tbody> 1.30 +</table> 1.31 +</body> 1.32 +</html>