blob: 5c61c8210bb444967ec211e0d668a59029e187e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
gczeal(7,1);
function TestCase(n) {
this.name = '';
this.description = '';
this.expect = '';
this.actual = '';
this.reason = '';
this.passed = '';
}
function test() { return new TestCase; }
test();
Object.defineProperty(Object.prototype, "name", {});
test();
|