1
0
Fork 0
firefox/dom/animation/test/mozilla/test_restyles.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

22 lines
525 B
HTML

<!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>