1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/tests/mochitest/general/test_bug629535.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,46 @@ 1.4 +<!DOCTYPE HTML> 1.5 +<html> 1.6 +<!-- 1.7 +https://bugzilla.mozilla.org/show_bug.cgi?id=629535 1.8 +--> 1.9 +<head> 1.10 + <title>Test for Bug 629535</title> 1.11 + <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> 1.12 + <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/> 1.13 +</head> 1.14 +<body> 1.15 +<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=629535">Mozilla Bug 629535</a> 1.16 + 1.17 +<script type="application/javascript"> 1.18 + 1.19 +const dntPref = 'privacy.donottrackheader.enabled'; 1.20 + 1.21 +SimpleTest.waitForExplicitFinish(); 1.22 + 1.23 +is(SpecialPowers.getBoolPref(dntPref), false, 1.24 + 'DNT should be disabled by default'); 1.25 +is(navigator.doNotTrack, 'unspecified', 1.26 + 'navigator.doNotTrack should initially be "unspecified".'); 1.27 + 1.28 +SpecialPowers.pushPrefEnv({"clear": [[dntPref]]}, test1); 1.29 + 1.30 +function test1() { 1.31 + is(navigator.doNotTrack, "unspecified", 'after clearing pref'); 1.32 + SpecialPowers.pushPrefEnv({"set": [[dntPref, true]]}, test2); 1.33 +} 1.34 + 1.35 +function test2() { 1.36 + is(navigator.doNotTrack, "yes", 'after setting pref to true'); 1.37 + SpecialPowers.pushPrefEnv({"set": [[dntPref, false]]}, test3); 1.38 +} 1.39 + 1.40 +function test3() { 1.41 + is(navigator.doNotTrack, "unspecified", 'after setting pref to false'); 1.42 + SimpleTest.finish(); 1.43 +} 1.44 + 1.45 +</script> 1.46 + 1.47 +</body> 1.48 +</html> 1.49 +