mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 19:04:58 +00:00
11 lines
157 B
JavaScript
11 lines
157 B
JavaScript
load("test-common.js");
|
|
|
|
try {
|
|
a = 1;
|
|
assert(delete globalThis.a === true);
|
|
a = 2;
|
|
console.log("PASS");
|
|
} catch (e) {
|
|
console.log("FAIL: " + e);
|
|
}
|