blob: 247b7c26447ff40f6ab38f944af4def617a64e8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1729861
-->
<head>
<meta charset="utf-8">
<title>Test that toggling the resistFingerprinting pref re-evaluates device media queries</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
<style id="test-css"></style>
<script src="bug1729861.js"></script>
<script>
// Run all tests now.
window.onload = function () {
add_task(async function() {
await test();
});
};
</script>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1729861">Bug 1729861</a>
<p id="display">TEST</p>
</body>
</html>
|