summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/rendering/non-replaced-elements/tables/transformed-tbody-tr-collapsed-border.html
blob: 5f131e6658ae1bc7f013974d6975122d5cba2c97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<title>Test for transformed tbody and tr with collapsed borders</title>
<link rel="match" href="transformed-tbody-tr-collapsed-border-ref.html">
<style>
table {
  border-collapse: collapse;
}
tbody, tr {
  transform: translateY(0);
}
td {
  border: 5px solid black;
  width: 100px;
  height: 100px;
}
</style>
Passes if there is a grid containing 2x2 squares.
<table>
  <tbody>
    <tr><td></td><td></td></tr>
    <tr><td></td><td></td></tr>
  </tbody>
</table>