Bug 1692740 [wpt PR 27624] - [TablesNG] clusterfuzz empty cells crash, a=testonly

Automatic update from web-platform-tests
[TablesNG] clusterfuzz empty cells crash

If all cells in a table column were empty, collapsed border
dimensions were computed incorrectly.

Fix: do not skip empty cells when dimensioning borders.

Bug: 1178110
Change-Id: I55b099c095b163d198a8dac5cfc7f172e6046a20
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2694726
Reviewed-by: Ian Kilpatrick <ikilpatrick@chromium.org>
Commit-Queue: Aleks Totic <atotic@chromium.org>
Cr-Commit-Position: refs/heads/master@{#853950}

--

wpt-commits: a8c6d1fe99eb0ab6ea4e4c19d7a918616e22bb82
wpt-pr: 27624
This commit is contained in:
Aleks Totic 2021-02-16 03:23:29 +00:00 коммит произвёл moz-wptsync-bot
Родитель 593d29a944
Коммит eafc6566de
1 изменённых файлов: 17 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,17 @@
<!doctype html>
<style>
table {
empty-cells: hide;
border-collapse: collapse;
}
td {
padding:0;
}
</style>
<table>
<td></td>
<td colspan=2></td>
<td></td>
</table>
</div>