summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/ReadableStream/bug-1549768.js
blob: 808aa9c0b112a01e72572ac1f1238e98493ea120 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
var otherGlobal = newGlobal({newCompartment: true});
var obj = { start(c) {} };
var Cancel = otherGlobal.ReadableStream.prototype.tee.call(new ReadableStream(obj))[0].cancel;

var stream = new ReadableStream(obj);
var [branch1, branch2] = ReadableStream.prototype.tee.call(stream);

Cancel.call(branch1, {});

gczeal(2, 1);

Cancel.call(branch2, {});

if (typeof reportCompare === 'function') {
  reportCompare(0, 0);
}