[Webkit-unassigned] [Bug 140575] Native Bindings Descriptors are Incomplete

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Feb 12 12:27:34 PST 2015


https://bugs.webkit.org/show_bug.cgi?id=140575

--- Comment #2 from Joseph Pecoraro <joepeck at webkit.org> ---
JSObject::getOwnPropertyDescriptor calls for CustomAccessors:

    void PropertyDescriptor::setCustomDescriptor(unsigned attributes)
    {
        m_attributes = attributes | Accessor | CustomAccessor;
        m_attributes &= ~ReadOnly;
        m_seenAttributes = EnumerablePresent | ConfigurablePresent;
        setGetter(jsUndefined());
        setSetter(jsUndefined());
        m_value = JSValue();
    }

As far as I can tell, only our bindings are CustomAccessors.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20150212/4466128d/attachment-0002.html>


More information about the webkit-unassigned mailing list