зеркало из https://github.com/mozilla/gecko-dev.git
27 строки
731 B
HTML
27 строки
731 B
HTML
<!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>
|