Tab Atkins Jr. (2013-08-22T02:10:04.000Z)
domenic at domenicdenicola.com (2013-08-29T19:19:41.437Z)
On Wed, Aug 21, 2013 at 5:55 PM, Mark S. Miller <erights at google.com> wrote: > This is an example of what I am worried about. Another is > > Object.create(p, {value: Promise}).Promise(....) > > where p is a promise. > > Perhaps it would help if, when we start to think "people can fool you > with..." it would help to substitute "an attacker can fool you with...". An attacker can already fool you with a promise-like, so I don't think this opens up any additional vectors. Unless you wanted promise-likes to return fresh objects too? That would be a third case, and potentially confusing for people. On the other hand, it would mean that the return value of `Promise(foo)` is always instanceof Promise. The only way to have a completely reliable type test is to use a WeakSet to keep track of instances, or store a brand on the object in a way that only the browser can read/write (such as in the C++ backing, for example). Do you consider WeakMaps sufficient for polyfillability? If so, then we're clear.