mirror of
https://github.com/servo/servo.git
synced 2025-06-29 11:33:39 +01:00
7 lines
242 B
JavaScript
7 lines
242 B
JavaScript
// META: global=jsshell
|
|
|
|
test(() => {
|
|
const argument = { "element": "anyfunc", "initial": 0 };
|
|
const table = new WebAssembly.Table(argument);
|
|
assert_class_string(table, "WebAssembly.Table");
|
|
}, "Object.prototype.toString on an Table");
|