blob: bc1ab70c7463429be76a9ba6ccb080bfb0942f10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!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>
|