forked from mirrors/gecko-dev
That is, don't force the width to be content-box. That matches other implementations and the spec. Differential Revision: https://phabricator.services.mozilla.com/D204812
19 lines
582 B
HTML
19 lines
582 B
HTML
<!~quirks>
|
|
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
|
|
<link rel="author" title="Mozilla" href="https://mozilla.org">
|
|
<link rel="help" href="https://quirks.spec.whatwg.org/#the-table-cell-height-box-sizing-quirk">
|
|
<link rel="match" href="table-cell-inline-size-box-sizing-quirks-ref.html">
|
|
<title>Table cell box-sizing quirk doesn't force inline-axis to be content-box</title>
|
|
<style>
|
|
td {
|
|
width: 50px;
|
|
padding: 10px;
|
|
border: 1px solid black;
|
|
box-sizing: border-box;
|
|
}
|
|
</style>
|
|
<table>
|
|
<tr>
|
|
<td>A</td>
|
|
</tr>
|
|
</table>
|