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
|
'use strict'
ChromeUtils.import('resource://gre/modules/Preferences.jsm');
const {Services} = ChromeUtils.import('resource://gre/modules/Services.jsm');
add_task(async function() {
let webnav = Services.appShell.createWindowlessBrowser(false);
let docShell = webnav.docShell;
docShell.createAboutBlankContentViewer(null, null);
let window = webnav.document.defaultView;
let unwrapped = Cu.waiveXrays(window);
class Base {
constructor(o) {
return o;
}
};
var A;
try {
A = eval(`
(function() {
class A extends Base {
#x = 12;
static gx(o) {
return o.#x;
}
static sx(o, v) {
o.#x = v;
}
};
return A})()`);
} catch (e) {
Assert.equal(e instanceof SyntaxError, true);
Assert.equal(
/private fields are not currently supported/.test(e.message), true);
// Early return if private fields aren't enabled.
return;
}
new A(window);
Assert.equal(A.gx(window), 12);
A.sx(window, 'wrapped');
// Shouldn't tunnel past xray.
Assert.throws(() => A.gx(unwrapped), TypeError);
Assert.throws(() => A.sx(unwrapped, 'unwrapped'), TypeError);
new A(unwrapped);
Assert.equal(A.gx(unwrapped), 12);
Assert.equal(A.gx(window), 'wrapped');
A.sx(window, 'modified');
Assert.equal(A.gx(unwrapped), 12);
A.sx(unwrapped, 16);
Assert.equal(A.gx(window), 'modified');
});
|