Source code
Revision control
Copy as Markdown
Other Tools
x = new Uint8ClampedArray;
x.__proto__ = {};
Object.defineProperty(this, "y", {
get: function() {
return x.length;
}
});
assertEq(y, undefined);
x = new Uint8ClampedArray;
x.__proto__ = {};
Object.defineProperty(this, "y", {
get: function() {
return x.length;
}
});
assertEq(y, undefined);