mirror of
https://github.com/servo/servo.git
synced 2025-08-10 07:55:33 +01:00
Update web-platform-tests to revision b'75b1ecef754b4c81ab92f9dd7d0663fbf3d16afe'
This commit is contained in:
parent
970ab0348f
commit
2084f90f36
80 changed files with 1491 additions and 1606 deletions
|
@ -3,6 +3,15 @@
|
|||
<script src='/resources/testharnessreport.js'></script>
|
||||
<link rel='stylesheet' href='./support/base.css' />
|
||||
<link rel="help" href="https://drafts.csswg.org/css-tables-3/#table-structure">
|
||||
<!--
|
||||
Quote from the spec link above:
|
||||
|
||||
"Authors should not assign a display type from the previous list to replaced elements (eg: input fields or images). When the display property of a replaced element computes to one of these values, it is handled instead as though the author had declared either block (for table display) or inline (for all other values). Whitespace collapsing and box generation must happen around those replaced elements like if they never had any table-internal display value applied to them, and had always been block or inline."
|
||||
|
||||
So, all the replaced elements tested below should behave as 'inline', except the ones with a computed value of 'table' which should behave as 'block'.
|
||||
|
||||
Per CSSWG resolution in: https://github.com/w3c/csswg-drafts/issues/508#issuecomment-319891999
|
||||
-->
|
||||
<style>
|
||||
[inline] { display: inline !important; }
|
||||
[block] { display: block !important; }
|
||||
|
@ -15,6 +24,7 @@
|
|||
[table-header-group] { display: table-header-group !important; }
|
||||
[table-footer-group] { display: table-footer-group !important; }
|
||||
[table-column-group] { display: table-column-group !important; }
|
||||
[table-caption] { display: table-caption !important; }
|
||||
div > x-table { background: yellow; border-spacing: 10px }
|
||||
div input { width: 100px; }
|
||||
</style>
|
||||
|
@ -50,67 +60,120 @@
|
|||
|
||||
<hr/><!------------------------------------------------------------------------------------------------------------>
|
||||
<p>Both input fields should look identical, on their own line:</p>
|
||||
<p>Replaced elements inside a table cannot be <mark>table-row</mark> and are considered <mark>block</mark> -- input elements</p>
|
||||
<p>Replaced elements inside a table cannot be <mark>table-row</mark> and are considered <mark>inline</mark> -- input elements (width)</p>
|
||||
<div offset=width>
|
||||
<x-table style="width: 400px">
|
||||
<x-tr><x-td><input block target=a /></x-tr>
|
||||
<input table-row target=b />
|
||||
</x-table>
|
||||
</div>
|
||||
<hr/><!------------------------------------------------------------------------------------------------------------>
|
||||
<p>Both input fields should look identical and be on the same line:</p>
|
||||
<p>Replaced elements inside a table cannot be <mark>table-row</mark> and are considered <mark>inline</mark> -- input elements (top)</p>
|
||||
<div offset=top>
|
||||
<x-table style="width: 400px">
|
||||
<x-tr><x-td></x-tr>
|
||||
<input table-row target=a /><input table-row target=b />
|
||||
</x-table>
|
||||
</div>
|
||||
|
||||
<hr/><!------------------------------------------------------------------------------------------------------------>
|
||||
<p>Both images should look identical, on their own line:</p>
|
||||
<p>Replaced elements inside a table cannot be <mark>table-row</mark> and are considered <mark>block</mark> -- img elements</p>
|
||||
<p>Replaced elements inside a table cannot be <mark>table-row</mark> and are considered <mark>inline</mark> -- img elements (width)</p>
|
||||
<div offset=width>
|
||||
<x-table style="width: 400px">
|
||||
<x-tr><x-td><img block src="../support/blue32x32.ico" target=a /></x-tr>
|
||||
<img src="../support/blue32x32.ico" table-row target=b />
|
||||
</x-table>
|
||||
</div>
|
||||
<hr/><!------------------------------------------------------------------------------------------------------------>
|
||||
<p>Both images should look identical and be on the same line:</p>
|
||||
<p>Replaced elements inside a table cannot be <mark>table-row</mark> and are considered <mark>inline</mark> -- img elements (top)</p>
|
||||
<div offset=top>
|
||||
<x-table style="width: 400px">
|
||||
<x-tr><x-td></x-tr>
|
||||
<img table-row src="../support/blue32x32.ico" target=a /><img src="../support/blue32x32.ico" table-row target=b />
|
||||
</x-table>
|
||||
</div>
|
||||
|
||||
<hr/><!------------------------------------------------------------------------------------------------------------>
|
||||
<p>Both input fields should look identical, on their own line:</p>
|
||||
<p>Replaced elements inside a table cannot be <mark>table-column</mark> and are considered <mark>inline</mark> -- input elements</p>
|
||||
<p>Replaced elements inside a table cannot be <mark>table-column</mark> and are considered <mark>inline</mark> -- input elements (width)</p>
|
||||
<div offset=width>
|
||||
<x-table style="width: 400px">
|
||||
<x-tr><x-td><input inline target=a /></x-tr>
|
||||
<input table-column target=b />
|
||||
</x-table>
|
||||
</div>
|
||||
<hr/><!------------------------------------------------------------------------------------------------------------>
|
||||
<p>Both input fields should look identical and be on the same line:</p>
|
||||
<p>Replaced elements inside a table cannot be <mark>table-column</mark> and are considered <mark>inline</mark> -- input elements (top)</p>
|
||||
<div offset=top>
|
||||
<x-table style="width: 400px">
|
||||
<x-tr><x-td></x-tr>
|
||||
<input table-column target=a /><input table-column target=b />
|
||||
</x-table>
|
||||
</div>
|
||||
|
||||
<hr/><!------------------------------------------------------------------------------------------------------------>
|
||||
<p>Both images should look identical, on their own line:</p>
|
||||
<p>Replaced elements inside a table cannot be <mark>table-column</mark> and are considered <mark>inline</mark> -- img elements</p>
|
||||
<p>Replaced elements inside a table cannot be <mark>table-column</mark> and are considered <mark>inline</mark> -- img elements (width)</p>
|
||||
<div offset=width>
|
||||
<x-table style="width: 400px">
|
||||
<x-tr><x-td><img inline src="../support/blue32x32.ico" target=a /></x-tr>
|
||||
<img src="../support/blue32x32.ico" table-column target=b />
|
||||
</x-table>
|
||||
</div>
|
||||
<hr/><!------------------------------------------------------------------------------------------------------------>
|
||||
<p>Both images should look identical and be on the same line:</p>
|
||||
<p>Replaced elements inside a table cannot be <mark>table-column</mark> and are considered <mark>inline</mark> -- img elements (top)</p>
|
||||
<div offset=top>
|
||||
<x-table style="width: 400px">
|
||||
<x-tr><x-td></x-tr>
|
||||
<img table-column src="../support/blue32x32.ico" target=a /><img src="../support/blue32x32.ico" table-column target=b />
|
||||
</x-table>
|
||||
</div>
|
||||
|
||||
<hr/><!------------------------------------------------------------------------------------------------------------>
|
||||
<p>Both input fields should look identical, on their own line:</p>
|
||||
<p>Replaced elements inside a table cannot be <mark>table-cell</mark> and are considered <mark>inline</mark> -- input elements</p>
|
||||
<p>Replaced elements inside a table cannot be <mark>table-cell</mark> and are considered <mark>inline</mark> -- input elements (width)</p>
|
||||
<div offset=width>
|
||||
<x-table style="width: 400px">
|
||||
<x-tr><x-td><input inline target=a /></x-tr>
|
||||
<x-tr><input table-cell target=b /></x-tr>
|
||||
</x-table>
|
||||
</div>
|
||||
<hr/><!------------------------------------------------------------------------------------------------------------>
|
||||
<p>Both input fields should look identical and be on the same line:</p>
|
||||
<p>Replaced elements inside a table cannot be <mark>table-cell</mark> and are considered <mark>inline</mark> -- input elements (top)</p>
|
||||
<div offset=top>
|
||||
<x-table style="width: 400px">
|
||||
<x-tr><input table-cell target=a /><input table-cell target=b /></x-tr>
|
||||
</x-table>
|
||||
</div>
|
||||
|
||||
<hr/><!------------------------------------------------------------------------------------------------------------>
|
||||
<p>Both images should look identical, on their own line:</p>
|
||||
<p>Replaced elements inside a table cannot be <mark>table-cell</mark> and are considered <mark>inline</mark> -- img elements</p>
|
||||
<p>Replaced elements inside a table cannot be <mark>table-cell</mark> and are considered <mark>inline</mark> -- img elements (width)</p>
|
||||
<div offset=width>
|
||||
<x-table style="width: 400px">
|
||||
<x-tr><x-td><img inline src="../support/blue32x32.ico" target=a /></x-tr>
|
||||
<x-tr><img src="../support/blue32x32.ico" table-cell target=b /></x-tr>
|
||||
</x-table>
|
||||
</div>
|
||||
<hr/><!------------------------------------------------------------------------------------------------------------>
|
||||
<p>Both images should look identical and be on the same line:</p>
|
||||
<p>Replaced elements inside a table cannot be <mark>table-cell</mark> and are considered <mark>inline</mark> -- img elements (top)</p>
|
||||
<div offset=top>
|
||||
<x-table style="width: 400px">
|
||||
<x-tr><x-td></x-tr>
|
||||
<x-tr><img table-cell src="../support/blue32x32.ico" target=a /><img src="../support/blue32x32.ico" table-cell target=b /></x-tr>
|
||||
</x-table>
|
||||
</div>
|
||||
|
||||
<hr/><!------------------------------------------------------------------------------------------------------------>
|
||||
<p>Both text inputs should share the same line:</p>
|
||||
<p>Replaced elements outside a table cannot be <mark>inline-table</mark> and are <mark>considered</mark> inline -- input=text elements</p>
|
||||
<p>Replaced elements outside a table cannot be <mark>inline-table</mark> and are considered <mark>inline</mark> -- input=text elements</p>
|
||||
<div offset=top>
|
||||
<input inline-table target=a />
|
||||
<input inline-table target=b />
|
||||
|
@ -173,72 +236,72 @@
|
|||
</div>
|
||||
|
||||
<hr/><!------------------------------------------------------------------------------------------------------------>
|
||||
<p>Both text inputs should stand on their own line:</p>
|
||||
<p>Replaced elements outside a table cannot be <mark>table-row</mark> and are considered <mark>block</mark> -- input=text elements</p>
|
||||
<div offset=top unequal>
|
||||
<p>Both text inputs should share the same line:</p>
|
||||
<p>Replaced elements outside a table cannot be <mark>table-row</mark> and are considered <mark>inline</mark> -- input=text elements</p>
|
||||
<div offset=top>
|
||||
<input type=text table-row target=a />
|
||||
<input type=text table-row target=b />
|
||||
</div>
|
||||
|
||||
<hr/><!------------------------------------------------------------------------------------------------------------>
|
||||
<p>Both button inputs should stand on their own line:</p>
|
||||
<p>Replaced elements outside a table cannot be <mark>table-row</mark> and are considered <mark>block</mark> -- input=button elements</p>
|
||||
<div offset=top unequal>
|
||||
<p>Both button inputs should share the same line:</p>
|
||||
<p>Replaced elements outside a table cannot be <mark>table-row</mark> and are considered <mark>inline</mark> -- input=button elements</p>
|
||||
<div offset=top>
|
||||
<input type=button table-row target=a />
|
||||
<input type=button table-row target=b />
|
||||
</div>
|
||||
|
||||
<hr/><!------------------------------------------------------------------------------------------------------------>
|
||||
<p>Both file inputs should stand on their own line:</p>
|
||||
<p>Replaced elements outside a table cannot be <mark>table-row</mark> and are considered <mark>block</mark> -- input=file elements</p>
|
||||
<div offset=top unequal>
|
||||
<p>Both file inputs should share the same line:</p>
|
||||
<p>Replaced elements outside a table cannot be <mark>table-row</mark> and are considered <mark>inline</mark> -- input=file elements</p>
|
||||
<div offset=top>
|
||||
<input type=file table-row target=a />
|
||||
<input type=file table-row target=b />
|
||||
</div>
|
||||
|
||||
<hr/><!------------------------------------------------------------------------------------------------------------>
|
||||
<p>Both images should stand on their own line:</p>
|
||||
<p>Replaced elements outside a table cannot be <mark>table-row</mark> and are considered <mark>block</mark> -- img elements</p>
|
||||
<div offset=top unequal>
|
||||
<p>Both images should share the same line:</p>
|
||||
<p>Replaced elements outside a table cannot be <mark>table-row</mark> and are considered <mark>inline</mark> -- img elements</p>
|
||||
<div offset=top>
|
||||
<img src="../support/blue32x32.ico" table-row target=a />
|
||||
<img src="../support/blue32x32.ico" table-row target=b />
|
||||
</div>
|
||||
|
||||
<hr/><!------------------------------------------------------------------------------------------------------------>
|
||||
<p>Both text inputs should stand on their own line:</p>
|
||||
<p>Replaced elements outside a table cannot be <mark>table-row-group</mark> and are considered <mark>block</mark> -- input=text elements</p>
|
||||
<div offset=top unequal>
|
||||
<p>Both text inputs should share the same line:</p>
|
||||
<p>Replaced elements outside a table cannot be <mark>table-row-group</mark> and are considered <mark>inline</mark> -- input=text elements</p>
|
||||
<div offset=top>
|
||||
<input type=text table-row-group target=a />
|
||||
<input type=text table-row-group target=b />
|
||||
</div>
|
||||
|
||||
<hr/><!------------------------------------------------------------------------------------------------------------>
|
||||
<p>Both button inputs should stand on their own line:</p>
|
||||
<p>Replaced elements outside a table cannot be <mark>table-row-group</mark> and are considered <mark>block</mark> -- input=button elements</p>
|
||||
<div offset=top unequal>
|
||||
<p>Both button inputs should share the same line:</p>
|
||||
<p>Replaced elements outside a table cannot be <mark>table-row-group</mark> and are considered <mark>inline</mark> -- input=button elements</p>
|
||||
<div offset=top>
|
||||
<input type=button table-row-group target=a />
|
||||
<input type=button table-row-group target=b />
|
||||
</div>
|
||||
|
||||
<hr/><!------------------------------------------------------------------------------------------------------------>
|
||||
<p>Both file inputs should stand on their own line:</p>
|
||||
<p>Replaced elements outside a table cannot be <mark>table-row-group</mark> and are considered <mark>block</mark> -- input=file elements</p>
|
||||
<div offset=top unequal>
|
||||
<p>Both file inputs should share the same line:</p>
|
||||
<p>Replaced elements outside a table cannot be <mark>table-row-group</mark> and are considered <mark>inline</mark> -- input=file elements</p>
|
||||
<div offset=top>
|
||||
<input type=file table-row-group target=a />
|
||||
<input type=file table-row-group target=b />
|
||||
</div>
|
||||
|
||||
<hr/><!------------------------------------------------------------------------------------------------------------>
|
||||
<p>Both images should stand on their own line:</p>
|
||||
<p>Replaced elements outside a table cannot be <mark>table-row-group</mark> and are considered <mark>block</mark> -- img elements</p>
|
||||
<div offset=top unequal>
|
||||
<p>Both images should share the same line:</p>
|
||||
<p>Replaced elements outside a table cannot be <mark>table-row-group</mark> and are considered <mark>inline</mark> -- img elements</p>
|
||||
<div offset=top>
|
||||
<img src="../support/blue32x32.ico" table-row-group target=a />
|
||||
<img src="../support/blue32x32.ico" table-row-group target=b />
|
||||
</div>
|
||||
|
||||
<hr/><!------------------------------------------------------------------------------------------------------------>
|
||||
<p>Both text inputs should share the same line:</p>
|
||||
<p>Replaced elements outside a table cannot be <mark>table-column</mark> and are <mark>considered</mark> inline -- input=text elements</p>
|
||||
<p>Replaced elements outside a table cannot be <mark>table-column</mark> and are considered <mark>inline</mark> inline -- input=text elements</p>
|
||||
<div offset=top>
|
||||
<input table-column target=a />
|
||||
<input table-column target=b />
|
||||
|
@ -270,7 +333,7 @@
|
|||
|
||||
<hr/><!------------------------------------------------------------------------------------------------------------>
|
||||
<p>Both text inputs should share the same line:</p>
|
||||
<p>Replaced elements outside a table cannot be <mark>table-cell</mark> and are <mark>considered</mark> inline -- input=text elements</p>
|
||||
<p>Replaced elements outside a table cannot be <mark>table-cell</mark> and are considered <mark>inline</mark> -- input=text elements</p>
|
||||
<div offset=top>
|
||||
<input table-cell target=a />
|
||||
<input table-cell target=b />
|
||||
|
@ -300,4 +363,36 @@
|
|||
<img src="../support/blue32x32.ico" table-cell target=b />
|
||||
</div>
|
||||
|
||||
<hr/><!------------------------------------------------------------------------------------------------------------>
|
||||
<p>Both text inputs should share the same line:</p>
|
||||
<p>Replaced elements outside a table cannot be <mark>table-caption</mark> and are considered <mark>inline</mark> -- input=text elements</p>
|
||||
<div offset=top>
|
||||
<input table-caption target=a />
|
||||
<input table-caption target=b />
|
||||
</div>
|
||||
|
||||
<hr/><!------------------------------------------------------------------------------------------------------------>
|
||||
<p>Both button inputs should share the same line:</p>
|
||||
<p>Replaced elements outside a table cannot be <mark>table-caption</mark> and are considered <mark>inline</mark> -- input=button elements</p>
|
||||
<div offset=top>
|
||||
<input type=button table-caption target=a />
|
||||
<input type=button table-caption target=b />
|
||||
</div>
|
||||
|
||||
<hr/><!------------------------------------------------------------------------------------------------------------>
|
||||
<p>Both file inputs should share the same line:</p>
|
||||
<p>Replaced elements outside a table cannot be <mark>table-caption</mark> and are considered <mark>inline</mark> -- input=file elements</p>
|
||||
<div offset=top>
|
||||
<input type=file table-caption target=a />
|
||||
<input type=file table-caption target=b />
|
||||
</div>
|
||||
|
||||
<hr/><!------------------------------------------------------------------------------------------------------------>
|
||||
<p>Both images should share the same line:</p>
|
||||
<p>Replaced elements outside a table cannot be <mark>table-caption</mark> and are considered <mark>inline</mark> -- img elements</p>
|
||||
<div offset=top>
|
||||
<img src="../support/blue32x32.ico" table-caption target=a />
|
||||
<img src="../support/blue32x32.ico" table-caption target=b />
|
||||
</div>
|
||||
|
||||
</main>
|
||||
|
|
|
@ -82,37 +82,36 @@ default to regular max size.</p>
|
|||
assert_equals(div.offsetWidth, 100);
|
||||
assert_equals(flexbox.offsetWidth, document.body.offsetWidth);
|
||||
assert_equals(flexbox.offsetWidth, table.offsetWidth + div.offsetWidth);
|
||||
}, "table's max width inside flexbox width:auto is not infinite");
|
||||
}, "table's width inside flexbox width:auto is not infinite");
|
||||
|
||||
test(_ => {
|
||||
let flexbox = document.querySelector("#flextest_max");
|
||||
let table = flexbox.querySelector("table");
|
||||
assert_equals(table.offsetWidth, 100);
|
||||
}, "table's max width inside flexbox width:max-content is not infinite");
|
||||
assert_greater_than(table.offsetWidth, document.body.offsetWidth);
|
||||
}, "table's width inside flexbox width:max-content is infinite");
|
||||
|
||||
test(_ => {
|
||||
let grid = document.querySelector("#grid");
|
||||
let table = grid.querySelector("table");
|
||||
assert_equals(grid.offsetWidth, document.body.offsetWidth);
|
||||
assert_equals(grid.offsetWidth, table.offsetWidth);
|
||||
}, "table's max width inside grid width:auto is not infinite");
|
||||
}, "table's width inside grid width:auto is not infinite");
|
||||
|
||||
test(_ => {
|
||||
let grid = document.querySelector("#grid_max");
|
||||
let table = grid.querySelector("table");
|
||||
assert_equals(grid.offsetWidth, 100);
|
||||
assert_equals(table.offsetWidth, 100);
|
||||
}, "table's max width inside grid width:max-content is not infinite");
|
||||
assert_greater_than(table.offsetWidth, document.body.offsetWidth);
|
||||
}, "table's width inside grid width:max-content is infinite");
|
||||
|
||||
test(_ => {
|
||||
let table = document.querySelector("#table_container");
|
||||
assert_equals(table.offsetWidth, document.body.offsetWidth);
|
||||
}, "table's max width inside a table cell is infinite");
|
||||
}, "table's width inside a table cell is infinite");
|
||||
|
||||
test(_ => {
|
||||
let abs = document.querySelector("#absolute");
|
||||
let table = abs.querySelector("table");
|
||||
assert_equals(table.offsetWidth, abs.offsetWidth);
|
||||
}, "table's max width inside an absolute block is infinite");
|
||||
}, "table's width inside an absolute block is infinite");
|
||||
|
||||
</script>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue