[Webkit-unassigned] [Bug 111476] Getting the descriptor selectionDirection throws error

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Apr 7 19:40:35 PDT 2016


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

Chris Dumez <cdumez at apple.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #2 from Chris Dumez <cdumez at apple.com> ---
This is apparently fixed on WebKit trunk:
var input = document.createElement('input');
input.type = 'checkbox';
Object.getOwnPropertyDescriptor(input, 'selectionDirection');
-> returns undefined
Object.getOwnPropertyDescriptor(input.__proto__, 'selectionDirection');
-> returns {get: function, set: function, enumerable: true, configurable: true}

Feel free to reopen if I missed something.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.webkit.org/pipermail/webkit-unassigned/attachments/20160408/d1825bb7/attachment.html>


More information about the webkit-unassigned mailing list