Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: os == 'android'
- Manifest: dom/animation/test/mochitest.toml
<!doctype html>
<meta charset=utf-8>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script>
'use strict';
setup({explicit_done: true});
// This test appears like it might get racey and cause a timeout with too low of a
// precision, so we hardcode it to something reasonable.
SpecialPowers.pushPrefEnv(
  {
    set: [
      ['privacy.reduceTimerPrecision', true],
      ['privacy.resistFingerprinting.reduceTimerPrecision.microseconds', 2000],
    ],
  },
  function() {
    window.open('file_transition_finish_on_compositor.html');
  }
);
</script>