Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/rendering/non-replaced-elements/tables/tr-transform-and-will-change.html - WPT Dashboard Interop Dashboard
<!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.