François REMY (2014-12-08T21:24:41.000Z)
d at domenic.me (2014-12-19T22:38:42.223Z)
I just had an horrible idea which can DDOS Firefox or hangs your tab in IE: ```js var o = {}; var p = new Proxy(o, { get: function(o, p) { return o[p]; } }); o.__proto__ = p; ``` This works because of the cycle detection for setting prototypes. Should it?
d at domenic.me (2014-12-19T22:37:07.231Z)
I just had an horrible idea which can DDOS Firefox or hangs your tab in IE: ```js var o = {}; var p = new Proxy(o, { get: function(o, p) { return o[p]; } }); o.__proto__ = p; ``` This works because of the cycle detection for setting prototypes. Should it? Best , François