summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/rendering/non-replaced-elements/tables/tr-transform-and-will-change.html
blob: 0f37d635a59e7cac0abed273c8256b75166a7b35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<link rel="match" href="tr-transform-and-will-change-ref.html">
<style>
tbody { background: green; }
td { width: 100px; height: 100px; }
tr { transform: translateX(5px); will-change: transform; }
</style>
<table>
  <tbody>
    <tr><td></td></tr>
    <tr><td></td></tr>
  </tbody>
</table>
There should be 2 green boxes above.