dom/animation/test/crashtests/1807966.html
author Tom Schuster <tschuster@mozilla.com>
Thu, 17 Jul 2025 07:01:33 +0000 (11 hours ago)
changeset 796956 2732dfd8c3b2071a053c85819299033f50ec5d48
parent 650295 6d4bfd1a3b4e7c5695a854d381397055f7c49b7b
permissions -rw-r--r--
Bug 1977645 - Remove svg.use-element.data-url-href.allowed pref. r=longsonr Differential Revision: https://phabricator.services.mozilla.com/D257534
<!DOCTYPE html>
<style>
  #target {
    transition-timing-function: linear(calc(15 / 0), 10 10%);
    transition-duration: 10s;
  }
</style>
<script>
  window.addEventListener('load', () => {
    target.style.paddingBlock = "10px 10px";
  })
</script>
<slot id="target"></slot>