[Webkit-unassigned] [Bug 31198] New: Can cache prototype lookups on uncacheable dictionaries.
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Thu Nov 5 22:38:12 PST 2009
https://bugs.webkit.org/show_bug.cgi?id=31198
Summary: Can cache prototype lookups on uncacheable
dictionaries.
Product: WebKit
Version: 528+ (Nightly build)
Platform: PC
OS/Version: Mac OS X 10.5
Status: NEW
Severity: Normal
Priority: P2
Component: JavaScriptCore
AssignedTo: webkit-unassigned at lists.webkit.org
ReportedBy: oliver at apple.com
var o = {a:5,b:6}; var a={__proto__:o}; delete o.b; function f(o) {return o.a;
}; f(a); f(a);f(a); delete o.a; o.c="FAIL"; alert(f(a));
--
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
More information about the webkit-unassigned
mailing list