Object.defineProperty打破了chrome窗口

时间:2014-11-14 14:12:25

标签: javascript google-chrome

所以,我想在页面的一部分设置document.domain属性不能设置,所以我使用了这个调用:

Object.defineProperty( document, "domain", {
    writable: false,
    enumerable: true,
    configurable: true
});

稍后在页面中,我接到了将writable属性更改为true的调用:

Object.defineProperty( document, "domain", {
    writable: true,
    enumerable: true,
    configurable: true
});

但是,在将其设置为true后,我的chrome窗口会立即断开,我会看到蓝屏,并显示消息:Aw snap! Something went wrong while displaying the webpage。这里有什么问题?

0 个答案:

没有答案