Account for rowspan in inline layout of table columns/cells

This commit is contained in:
Matt Brubeck 2016-12-08 15:47:22 -08:00
parent e982d6003f
commit 9700b0e8b3
6 changed files with 180 additions and 11 deletions

View file

@ -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",

View 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">&nbsp;</td><td>&nbsp;</td></tr>
<tr><td id="test">&nbsp;</td></tr>
</table>
</body>
</html>

View 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>&nbsp;</td><td>&nbsp;</td></tr>
<tr><td>&nbsp;</td><td id="test">&nbsp;</td></tr>
</table>
</body>
</html>