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
This commit is contained in:
David Grogan 2018-03-26 13:29:44 +00:00 committed by James Graham
parent 5c20c64234
commit 986a7947e1
3 changed files with 94 additions and 0 deletions

View File

@ -126813,6 +126813,30 @@
{}
]
],
"css/css-tables/table-has-box-sizing-border-box-001.html": [
[
"/css/css-tables/table-has-box-sizing-border-box-001.html",
[
[
"/css/reference/ref-filled-green-100px-square-only.html",
"=="
]
],
{}
]
],
"css/css-tables/table-has-box-sizing-border-box-002.html": [
[
"/css/css-tables/table-has-box-sizing-border-box-002.html",
[
[
"/css/reference/ref-filled-green-100px-square.xht",
"=="
]
],
{}
]
],
"css/css-tables/visibility-collapse-colspan-003.html": [
[
"/css/css-tables/visibility-collapse-colspan-003.html",
@ -507454,6 +507478,14 @@
"abe7468e88cad3aef32c7e59fa4a33a7930ef53b",
"support"
],
"css/css-tables/table-has-box-sizing-border-box-001.html": [
"3dfed21dfe287177c0e58299e4ecf9dd08834b01",
"reftest"
],
"css/css-tables/table-has-box-sizing-border-box-002.html": [
"aef88d4cbfdaa5c188ce7e528d1de64405c3498b",
"reftest"
],
"css/css-tables/table-model-fixup-2.html": [
"57f45e21a6f9f51154f872c724856d41681857e7",
"testharness"

View File

@ -0,0 +1,26 @@
<!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-only.html">
<link rel="bookmark" href="https://bugs.chromium.org/p/chromium/issues/detail?id=598134" />
<meta name="flags" content="" />
<meta name="assert" content="default box-sizing for <table> is border-box" />
<title>
UA stylesheet, &lt;table>, box-sizing
</title>
<style>
#table {
width: 100px;
height: 100%;
background: green;
padding-bottom: 35px;
}
</style>
<p>Test passes if there is a filled green square.
</p>
<div style="height:100px">
<table id="table"></table>
</div>

View File

@ -0,0 +1,36 @@
<!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>