dom/animation/test/crashtests/1699890.html
author Tom Schuster <tschuster@mozilla.com>
Thu, 17 Jul 2025 07:01:33 +0000 (13 hours ago)
changeset 796956 2732dfd8c3b2071a053c85819299033f50ec5d48
parent 580561 69826920340d334a558448edd7216fad47a80b4d
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>
<html>
<style>
@keyframes anim {
  from { background-color: rgba(0, 0, 0, 0); }
  to { background-color: rgba(255, 0, 0, 255); }
}
body {
  animation: anim 100s;
  width: 100vw;
  height: 100vh;
}
</style>