mirror of
https://github.com/servo/servo.git
synced 2025-08-10 16:05:43 +01:00
Update web-platform-tests to revision 2b7dace05fc1869398ee24f84fda4c0e4c0455ae
This commit is contained in:
parent
b23125d590
commit
6c901de216
844 changed files with 19802 additions and 3093 deletions
46
tests/wpt/web-platform-tests/wasm/jsapi/table/length.any.js
Normal file
46
tests/wpt/web-platform-tests/wasm/jsapi/table/length.any.js
Normal file
|
@ -0,0 +1,46 @@
|
|||
// META: global=jsshell
|
||||
|
||||
test(() => {
|
||||
const thisValues = [
|
||||
undefined,
|
||||
null,
|
||||
true,
|
||||
"",
|
||||
Symbol(),
|
||||
1,
|
||||
{},
|
||||
WebAssembly.Table,
|
||||
WebAssembly.Table.prototype,
|
||||
];
|
||||
|
||||
const desc = Object.getOwnPropertyDescriptor(WebAssembly.Table.prototype, "length");
|
||||
assert_equals(typeof desc, "object");
|
||||
|
||||
const getter = desc.get;
|
||||
assert_equals(typeof getter, "function");
|
||||
|
||||
assert_equals(typeof desc.set, "undefined");
|
||||
|
||||
for (const thisValue of thisValues) {
|
||||
assert_throws(new TypeError(), () => getter.call(thisValue), `this=${format_value(thisValue)}`);
|
||||
}
|
||||
}, "Branding");
|
||||
|
||||
test(() => {
|
||||
const argument = { "element": "anyfunc", "initial": 2 };
|
||||
const table = new WebAssembly.Table(argument);
|
||||
assert_equals(table.length, 2, "Initial length");
|
||||
table.length = 4;
|
||||
assert_equals(table.length, 2, "Should not change the length");
|
||||
}, "Setting (sloppy mode)");
|
||||
|
||||
test(() => {
|
||||
const argument = { "element": "anyfunc", "initial": 2 };
|
||||
const table = new WebAssembly.Table(argument);
|
||||
assert_equals(table.length, 2, "Initial length");
|
||||
assert_throws(new TypeError(), () => {
|
||||
"use strict";
|
||||
table.length = 4;
|
||||
});
|
||||
assert_equals(table.length, 2, "Should not change the length");
|
||||
}, "Setting (strict mode)");
|
Loading…
Add table
Add a link
Reference in a new issue