| This page tests for correct behavior in the case of a global object that has |
| had a property deleted. If the test passes, you'll see a PASS message below. |
| document.getElementById("console").appendChild(document.createTextNode(s + "\n")); |
| function shouldBe(a, aDescription, b) |
| log("PASS: " + aDescription + " should be " + b + " and is."); |
| log("FAIL: " + aDescription + " should be " + b + " but instead is " + a + "."); |
| window.__defineGetter__("x", function() { return y; }); |
| window.__defineGetter__("y", function() { return 42; }); |