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.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,30 @@ 1.4 +<!DOCTYPE HTML> 1.5 +<html> 1.6 +<head> 1.7 + <title>CSS Test: 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 + <link rel="help" href="http://www.w3.org/TR/css3-values/#calc-notation"> 1.10 + <meta name="flags" content=""> 1.11 +<style type="text/css"> 1.12 +tbody, tr, td { 1.13 + height: calc(500px); 1.14 + min-height: calc(700px); 1.15 + max-height: calc(2px); 1.16 +} 1.17 +</style> 1.18 +</head> 1.19 +<body> 1.20 +<table border> 1.21 + <tbody> 1.22 + <tr> 1.23 + <td>cell</td> 1.24 + <td>cell</td> 1.25 + </tr> 1.26 + <tr> 1.27 + <td>cell</td> 1.28 + <td>cell</td> 1.29 + </tr> 1.30 + </tbody> 1.31 +</table> 1.32 +</body> 1.33 +</html>