tenfourfox/layout/reftests/box-properties/width-special-values-float-intrinsic.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

49 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en-US">
<head>
<title>intrinsic widths for -moz-max-content, -moz-min-content, -moz-fit-content, and -moz-available values of CSS width property, on blocks</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="Content-Style-Type" content="text/css">
<style type="text/css">
div { float: left; clear: left; }
</style>
</head>
<body>
<table border><tr><td>
<div style="width: -moz-max-content">AA B</div>
</td></tr></table>
<table border width="1"><tr><td>
<div style="width: -moz-max-content">AA B</div>
</td></tr></table>
<table border><tr><td>
<div style="width: -moz-min-content">AA B</div>
</td></tr></table>
<table border width="1"><tr><td>
<div style="width: -moz-min-content">AA B</div>
</td></tr></table>
<table border><tr><td>
<div style="width: -moz-fit-content">AA B</div>
</td></tr></table>
<table border width="1"><tr><td>
<div style="width: -moz-fit-content">AA B</div>
</td></tr></table>
<table border><tr><td>
<div style="width: -moz-available">AA B</div>
</td></tr></table>
<table border width="1"><tr><td>
<div style="width: -moz-available">AA B</div>
</td></tr></table>
</body>
</html>