mirror of
https://github.com/servo/servo.git
synced 2025-07-11 01:13:41 +01:00
7 lines
227 B
JavaScript
7 lines
227 B
JavaScript
// META: global=jsshell
|
|
|
|
test(() => {
|
|
const argument = { "value": "i32" };
|
|
const global = new WebAssembly.Global(argument);
|
|
assert_class_string(global, "WebAssembly.Global");
|
|
}, "Object.prototype.toString on an Global");
|