fune/testing/web-platform/tests/css/css-grid/table-grid-item-dynamic-001-ref.html
Emilio Cobos Álvarez bc8a8f5439 Bug 1492315 - Subtract table grid item margins correctly. r=mats
Differential Revision: https://phabricator.services.mozilla.com/D63762

--HG--
extra : moz-landing-system : lando
2020-02-24 21:56:02 +00:00

26 lines
405 B
HTML

<!doctype html>
<meta charset="utf-8">
<title>CSS Test Reference</title>
<style>
html,body {
color:black; background-color:white; font:16px/1 monospace; padding:0; margin:0;
}
div {
display: grid;
background-color: lime;
}
table {
margin-top: 100px;
}
</style>
<div>
<table>
<thead>
<tr>
<th>Relayout shouldn't grow this table</th>
</tr>
</thead>
</table>
</div>