diff options
Diffstat (limited to 'layout/style/test/test_bug1729861.html')
-rw-r--r-- | layout/style/test/test_bug1729861.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/layout/style/test/test_bug1729861.html b/layout/style/test/test_bug1729861.html new file mode 100644 index 0000000000..247b7c2644 --- /dev/null +++ b/layout/style/test/test_bug1729861.html @@ -0,0 +1,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> |