test_restyles.html (525B)
1 <!doctype html> 2 <meta charset=utf-8> 3 <script src="/tests/SimpleTest/SimpleTest.js"></script> 4 <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/> 5 <div id='log'></div> 6 <script> 7 'use strict'; 8 SimpleTest.waitForExplicitFinish(); 9 SimpleTest.expectAssertions(0, 1); // bug 1332970 10 SpecialPowers.pushPrefEnv( 11 { 12 set: [ 13 ['layout.reflow.synthMouseMove', false], 14 ['privacy.reduceTimerPrecision', false], 15 ], 16 }, 17 function() { 18 window.open('file_restyles.html'); 19 } 20 ); 21 </script> 22 </html>