dom/animation/test/chrome/file_animate_xrays.html
author Cosmin Sabou <csabou@mozilla.com>
Sat, 12 Jul 2025 09:18:08 +0300 (10 hours ago)
changeset 796290 5ad1f0c58c82bdfa2f42fed870bbe143465398d0
parent 417844 238d0908de38dbeed24a2e288b8b25e64087ec7c
permissions -rw-r--r--
Revert "Bug 1977019 - re-enable hw video decoding testing. r=media-playback-reviewers,jolin" for causing win mda failures on test_hw_video_decoding.html This reverts commit 158474bdc0cf585b701bc47921f0a7d84f7bb84d.
<!doctype html>
<html>
<head>
<meta charset=utf-8>
<script>
Element.prototype.animate = function() {
  throw 'Called animate() as defined in content document';
}
for (let name of ["KeyframeEffect", "Animation"]) {
  this[name] = function() {
    throw `Called overridden ${name} constructor`;
  };
}
</script>
<body>
<div id="target"></div>
</body>
</html>