[Webkit-unassigned] [Bug 49739] WebIDL attributes should be implemented as getters and setters on the prototype object.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Apr 11 07:35:30 PDT 2014


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


Erik Arvidsson <arv at chromium.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
           Priority|P2                          |P1
         AssignedTo|webkit-unassigned at lists.web |zandobersek at gmail.com
                   |kit.org                     |




--- Comment #19 from Erik Arvidsson <arv at chromium.org>  2014-04-11 07:35:47 PST ---
I just noticed that the descriptors have changed. However, both get and set are undefined.

Object.getOwnPropertyDescriptor(HTMLElement.prototype, 'title');
{
  configurable: false,
  enumerable: true,
  get: undefined,
  set: undefined
}

This is pretty bad since it looks like you support accessors but you really do not. I hope you are not shipping anything with this any time soon.

P.S. The only thing correct in that descriptor is the enumerable bit.

-- 
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