mirror of
https://github.com/servo/servo.git
synced 2025-08-07 22:45:34 +01:00
Account for rowspan in inline layout of table columns/cells
This commit is contained in:
parent
e982d6003f
commit
9700b0e8b3
6 changed files with 180 additions and 11 deletions
|
@ -5292,6 +5292,18 @@
|
|||
"url": "/_mozilla/css/table_row_direction_a.html"
|
||||
}
|
||||
],
|
||||
"css/table_rowspan_simple_a.html": [
|
||||
{
|
||||
"path": "css/table_rowspan_simple_a.html",
|
||||
"references": [
|
||||
[
|
||||
"/_mozilla/css/table_rowspan_simple_ref.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
"url": "/_mozilla/css/table_rowspan_simple_a.html"
|
||||
}
|
||||
],
|
||||
"css/table_specified_width_a.html": [
|
||||
{
|
||||
"path": "css/table_specified_width_a.html",
|
||||
|
@ -20328,6 +20340,30 @@
|
|||
"url": "/_mozilla/css/table_row_direction_a.html"
|
||||
}
|
||||
],
|
||||
"css/table_rowspan_simple_a.html": [
|
||||
{
|
||||
"path": "css/table_rowspan_simple_a.html",
|
||||
"references": [
|
||||
[
|
||||
"/_mozilla/css/table_rowspan_simple_ref.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
"url": "/_mozilla/css/table_rowspan_simple_a.html"
|
||||
}
|
||||
],
|
||||
"css/table_rowspan_simple_ref.html": [
|
||||
{
|
||||
"path": "css/table_rowspan_simple_ref.html",
|
||||
"references": [
|
||||
[
|
||||
"/_mozilla/css/table_rowspan_simple_ref.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
"url": "/_mozilla/css/table_rowspan_simple_ref.html"
|
||||
}
|
||||
],
|
||||
"css/table_specified_width_a.html": [
|
||||
{
|
||||
"path": "css/table_specified_width_a.html",
|
||||
|
|
20
tests/wpt/mozilla/tests/css/table_rowspan_simple_a.html
Normal file
20
tests/wpt/mozilla/tests/css/table_rowspan_simple_a.html
Normal file
|
@ -0,0 +1,20 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<meta charset="UTF-8">
|
||||
<link rel="match" href="table_rowspan_simple_ref.html">
|
||||
<style>
|
||||
td {
|
||||
width: 100px;
|
||||
}
|
||||
#test {
|
||||
background-color: green;
|
||||
}
|
||||
</style>
|
||||
<body>
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td rowspan="2"> </td><td> </td></tr>
|
||||
<tr><td id="test"> </td></tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
|
20
tests/wpt/mozilla/tests/css/table_rowspan_simple_ref.html
Normal file
20
tests/wpt/mozilla/tests/css/table_rowspan_simple_ref.html
Normal file
|
@ -0,0 +1,20 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<meta charset="UTF-8">
|
||||
<link rel="match" href="table_rowspan_simple_ref.html">
|
||||
<style>
|
||||
td {
|
||||
width: 100px;
|
||||
}
|
||||
#test {
|
||||
background-color: green;
|
||||
}
|
||||
</style>
|
||||
<body>
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td> </td><td> </td></tr>
|
||||
<tr><td> </td><td id="test"> </td></tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue