mirror of
https://github.com/reactos/reactos.git
synced 2025-08-07 04:43:01 +00:00
[JSCRIPT_WINETEST] Sync with Wine Staging 3.3. CORE-14434
This commit is contained in:
parent
8dba275bd6
commit
e68a367aa6
6 changed files with 13 additions and 37 deletions
|
@ -1171,6 +1171,10 @@ ok(tmp["0"] === undefined, "tmp[0] is not undefined");
|
|||
ok(tmp["3"] === 2, "tmp[3] !== 2");
|
||||
ok(tmp["6"] === true, "tmp[6] !== true");
|
||||
ok(tmp[2] === 1, "tmp[2] !== 1");
|
||||
ok(!("0" in tmp), "0 found in array");
|
||||
ok(!("1" in tmp), "1 found in array");
|
||||
ok("2" in tmp, "2 not found in array");
|
||||
ok(!("2" in [1,,,,]), "2 found in [1,,,,]");
|
||||
|
||||
ok([1,].length === 2, "[1,].length !== 2");
|
||||
ok([,,].length === 3, "[,,].length !== 3");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue