1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/box-properties/width-special-values-float-intrinsic.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,48 @@ 1.4 +<!DOCTYPE html> 1.5 +<html lang="en-US"> 1.6 +<head> 1.7 + <title>intrinsic widths for -moz-max-content, -moz-min-content, -moz-fit-content, and -moz-available values of CSS width property, on blocks</title> 1.8 + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 1.9 + <meta http-equiv="Content-Style-Type" content="text/css"> 1.10 + <style type="text/css"> 1.11 + 1.12 + div { float: left; clear: left; } 1.13 + 1.14 + </style> 1.15 +</head> 1.16 +<body> 1.17 + 1.18 +<table border><tr><td> 1.19 + <div style="width: -moz-max-content">AA B</div> 1.20 +</td></tr></table> 1.21 + 1.22 +<table border width="1"><tr><td> 1.23 + <div style="width: -moz-max-content">AA B</div> 1.24 +</td></tr></table> 1.25 + 1.26 +<table border><tr><td> 1.27 + <div style="width: -moz-min-content">AA B</div> 1.28 +</td></tr></table> 1.29 + 1.30 +<table border width="1"><tr><td> 1.31 + <div style="width: -moz-min-content">AA B</div> 1.32 +</td></tr></table> 1.33 + 1.34 +<table border><tr><td> 1.35 + <div style="width: -moz-fit-content">AA B</div> 1.36 +</td></tr></table> 1.37 + 1.38 +<table border width="1"><tr><td> 1.39 + <div style="width: -moz-fit-content">AA B</div> 1.40 +</td></tr></table> 1.41 + 1.42 +<table border><tr><td> 1.43 + <div style="width: -moz-available">AA B</div> 1.44 +</td></tr></table> 1.45 + 1.46 +<table border width="1"><tr><td> 1.47 + <div style="width: -moz-available">AA B</div> 1.48 +</td></tr></table> 1.49 + 1.50 +</body> 1.51 +</html>