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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=583181
-->
<head>
<title>Test for Bug 583181</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<script src="/tests/SimpleTest/ChromeTask.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body onload="onLoad()">
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=583181">Mozilla Bug 583181</a>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script class="testbody" type="text/javascript">
"use strict";
SimpleTest.waitForExplicitFinish();
const LEGACY_BUILD_ID = 20181001000000;
//
// Access navigator.buildID from unprivileged web content.
//
var isOK = false;
try {
var contentBuildID = navigator.buildID;
isOK = true;
} catch (ex) {
}
ok(isOK, "navigator.buildID should never throw");
is(typeof(contentBuildID), "string", "navigator.buildID should be a string");
is(+contentBuildID, LEGACY_BUILD_ID,
"navigator.buildID should be spoofed in content");
async function onLoad() {
//
// Access navigator.buildID from chrome.
//
let chromeBuildID = await ChromeTask.spawn(null, () => {
const browser = Services.wm.getMostRecentBrowserWindow();
return browser.navigator.buildID;
});
ok(+chromeBuildID > LEGACY_BUILD_ID,
`navigator.buildID should be exposed in chrome - got "${chromeBuildID}"`);
//
// Access navigator.buildID from mozilla.org.
//
let mozillaBuildID = await getMozillaBuildID();
ok(+mozillaBuildID > LEGACY_BUILD_ID,
`navigator.buildID should be exposed on mozilla.org ` +
`- got "${mozillaBuildID}"`);
is(chromeBuildID, mozillaBuildID,
"navigator.buildID should be the same in chrome and on mozilla.org");
//
// Access navigator.buildID from mozilla.org when resisting fingerprinting.
//
await SpecialPowers.pushPrefEnv(
{"set": [["privacy.resistFingerprinting", true]]});
let resistBuildID = await getMozillaBuildID();
is(+resistBuildID, LEGACY_BUILD_ID,
"navigator.buildID should be spoofed on mozilla.org when " +
"resisting fingerprinting");
SimpleTest.finish();
}
async function getMozillaBuildID() {
let iframe = document.getElementById("mozillaIFrame");
await new Promise(resolve => {
iframe.addEventListener("load", resolve, { once: true });
SpecialPowers.spawn(iframe, [], () => this.content.location.reload());
});
return SpecialPowers.spawn(
iframe, [], () => this.content.wrappedJSObject.navigator.buildID);
}
</script>
</pre>
<iframe id="mozillaIFrame" src="https://www.mozilla.org/" />
</body>
</html>
|