Bug 139194
Summary: | Add test for r176506 - ASSERT(!m_vector.isEmpty()) in IntendedStructureChain.cpp(143) | ||
---|---|---|---|
Product: | WebKit | Reporter: | Michael Saboff <msaboff> |
Component: | JavaScriptCore | Assignee: | Michael Saboff <msaboff> |
Status: | ASSIGNED | ||
Severity: | Normal | ||
Priority: | P2 | ||
Version: | 528+ (Nightly build) | ||
Hardware: | Unspecified | ||
OS: | Unspecified | ||
Bug Depends on: | 139000 | ||
Bug Blocks: |
Michael Saboff
A suggested test from https://bugs.webkit.org/show_bug.cgi?id=139000#c5:
var o1 = { __proto__: null, a: 0, b: 0 };
var o2 = { __proto__: null, a: 0, c: 0 };
var o3 = { __proto__: null, a: 0, d: 0 };
function access(o)
{
return o.a;
}
do a lot:
access(o1)
access(o2)
access(o3)
Attachments | ||
---|---|---|
Add attachment proposed patch, testcase, etc. |