| OLD | NEW |
| (Empty) |
| 1 PASS div.hasOwnProperty("id") is false | |
| 2 PASS div.__proto__.__proto__.__proto__.hasOwnProperty("id") is true | |
| 3 PASS desc.get instanceof Function is true | |
| 4 PASS desc.set instanceof Function is true | |
| 5 PASS desc.enumerable is true | |
| 6 PASS desc.configurable is true | |
| 7 PASS xhr = new XMLHttpRequest(); xhr.__proto__ = HTMLDivElement.prototype; xhr.i
d threw exception TypeError: Illegal invocation. | |
| 8 PASS obj = Object.create(div); obj.id threw exception TypeError: Illegal invocat
ion. | |
| 9 PASS desc.get.call({}) threw exception TypeError: Illegal invocation. | |
| 10 PASS desc.set.call(a, "abc") is undefined. | |
| 11 PASS desc.get.call(a) is "abc" | |
| 12 PASS successfullyParsed is true | |
| 13 | |
| 14 TEST COMPLETE | |
| 15 | |
| OLD | NEW |