Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Errors

  • This test gets skipped with pattern: os == 'android' && debug OR os == 'linux' && tsan OR display == 'wayland' && os_version == '22.04' && debug OR http3 OR http2
  • This test failed 33 times in the preceding 30 days. quicksearch this test
  • Manifest: dom/animation/test/mochitest.toml
<!doctype html>
<meta charset=utf-8>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
<div id='log'></div>
<script>
'use strict';
SimpleTest.waitForExplicitFinish();
SimpleTest.expectAssertions(0, 1); // bug 1332970
SpecialPowers.pushPrefEnv(
{
set: [
['layout.reflow.synthMouseMove', false],
['privacy.reduceTimerPrecision', false],
],
},
function() {
window.open('file_restyles.html');
}
);
</script>
</html>