mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-12 22:28:59 +02:00
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
36 lines
969 B
HTML
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, <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>
|