blob: 68351000c5ca1ba8c2d578a211fe2fad18336909 (
plain)
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
|
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Test Private Fields</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<script type="application/javascript">
function go() {
SimpleTest.waitForExplicitFinish();
let worker = new Worker('private_field_worker.js');
var allocated = 0;
worker.onmessage = function(e) {
is(e.data, allocated, "correctly allocated private field-containing-class");
SimpleTest.finish();
}
worker.postMessage("allocate"); allocated++;
worker.postMessage("count");
info("Messages posted");
}
go();
</script>
</head>
</html>
|