blob: e3ce063fe9a4239b5e3cdfed50c04d13541dcc02 (
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
28
29
30
31
32
|
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Test class static fields</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<script type="application/javascript">
// Make sure static classes parse in regular context too:
class B {
static { this.x = 12; }
}
is(B.x, 12, "static block set class value");
console.log("script");
function go() {
SimpleTest.waitForExplicitFinish();
let worker = new Worker('class_static_worker.js');
console.log("message")
worker.onmessage = function(e) {
is(e.data, 12, "correctly allocated class-static containing-class in worker");
SimpleTest.finish();
}
worker.postMessage("get");
info("Messages posted");
}
go();
</script>
</head>
</html>
|