wpt / css / css-backgrounds / animations / background-color-animation-with-table4.html

Status: PASS | Duration: 7ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/css-backgrounds/animations/background-color-animation-with-table4.html

<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/css-backgrounds-3/#background-color">
<link rel="match" href="background-color-animation-with-table1-ref.html">
<style>
table {
  width: 160px;
  columns: 2;
}
tr {
  animation: bgcolor 0.1s;
}
@keyframes bgcolor {
  0% { background-color: rgba(0, 200, 0, 0); }
  100% { background-color: rgba(200, 0, 0, 0); }
}
</style>
<table>
  <tr><td>1
  <tr><td>2
</table>

/css/css-backgrounds/animations/background-color-animation-with-table1-ref.html

<!DOCTYPE html>
<style>
table {
  width: 160px;
}
</style>
<table>
  <tr><td>1
  <tr><td>2
</table>