blob: c01755c24f116aa95ffbfde700b6ead96390b97e [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=800">
<style>
body {
width: 800px;
margin: 0;
overflow-y: hidden;
font-size: 12px;
}
#description {
overflow: clip;
width: 600px;
height: 3em;
}
table {
outline: 1px solid black;
margin: 1px;
border-collapse: collapse;
}
td {
background-color: honeydew;
border: 1px dotted darkgreen;
}
</style>
<script src="../resources/autosizingTest.js"></script>
</head>
<body>
<div id="description">
Table autosizing tests - wide-percentage-width.html<br/>
This test passes if the cell with lots of text is autosized and none of the other 5 cells are autosized.
</div>
<table width="62.5%">
<tr>
<td>hello</td>
<td>hello</td>
<td>hello</td>
</tr>
<tr>
<td>
hello
</td>
<td>
hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello
</td>
<td>
hello
</td>
</tr>
</table>
</body>
</html>