gecko-dev/testing/web-platform/tests/css/css-tables/table-has-box-sizing-border-box-002.html
David Grogan 986a7947e1 Bug 1441722 [wpt PR 9699] - [css-tables] Test that tables have box-sizing:border-box by default, a=testonly
Automatic update from web-platform-tests[css-tables] Test that tables have box-sizing:border-box by default

Legacy layout erroneously sets box-sizing:border-box on non-table
elements that have display:table when the element has a specified %
height. Only <table> elements should have box-sizing:border-box.

Bug: 598134
Change-Id: I66a4a6380ca60a88516a63d3df84faabd709d4c0
Reviewed-on: https://chromium-review.googlesource.com/940561
Commit-Queue: David Grogan <dgrogan@chromium.org>
Reviewed-by: Morten Stenshorne <mstensho@chromium.org>
Cr-Commit-Position: refs/heads/master@{#539916}

wpt-commits: 508c74e4cfeff84d005166adeb80f89237a70b71
wpt-pr: 9699
wpt-commits: 508c74e4cfeff84d005166adeb80f89237a70b71
wpt-pr: 9699
2018-03-31 22:28:44 +01:00

36 lines
969 B
HTML

<!DOCTYPE html>
<meta charset="utf-8">
<link rel="author" title="David Grogan" href="dgrogan@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-tables-3/#mapping">
<link rel="match" href="../reference/ref-filled-green-100px-square.xht">
<link rel="bookmark" href="https://bugs.chromium.org/p/chromium/issues/detail?id=598134" />
<meta name="flags" content="" />
<meta name="assert" content="default <table> box-sizing:border-box is not applied to non-table elements that have display:table" />
<title>
UA stylesheet, &lt;table>, box-sizing
</title>
<style>
#table {
display: table;
width: 100px;
height: 100%;
background: green;
padding-bottom: 35px;
}
#redSquare {
height: 100px;
width: 100px;
background-color: red;
position: absolute;
z-index: -1;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.
</p>
<div id="redSquare"></div>
<div style="height:65px">
<div id="table"></div>
</div>