RESOLVED FIXED 29214
getPropertyNames caching is invalid when the prototype chain contains objects with custom getPropertyNames
https://bugs.webkit.org/show_bug.cgi?id=29214
Summary getPropertyNames caching is invalid when the prototype chain contains objects...
Oliver Hunt
Reported 2009-09-11 17:14:37 PDT
a={}; a.__proto__=[]; for(i in a) print(i); a.__proto__[0]=1; for(i in a) print(i); // should print 0 but doesn't get hit
Attachments
Patch v1 (14.43 KB, patch)
2009-09-11 18:31 PDT, Oliver Hunt
sam: review+
Oliver Hunt
Comment 1 2009-09-11 18:31:35 PDT
Created attachment 39499 [details] Patch v1
Oliver Hunt
Comment 2 2009-09-11 21:53:17 PDT
Committed r48331
Note You need to log in before you can comment on or make changes to this bug.