summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-transitions/infinite-duration-crash.html
blob: dba53d66b7ac7bddcdc444dfd470cd37345f6a4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<style>
  * {
    transition: all ease-out, linear 2733ms background, all calc(2s / 0) steps(706573049);
  }
</style>
<script>
  document.addEventListener("DOMContentLoaded", () => {
    const style = document.createElement("style")
    document.head.appendChild(style)
    const selection = window.getSelection()
    style.sheet.insertRule(`* { background-clip: padding-box, padding-box, border-box, content-box; }`, 0)
    selection.selectAllChildren(style)
    style.sheet.disabled = true
  })
</script>