DevTools: user defined getter/setter on binding object is replaced with value |
||
Issue description
1. Run following code in console:
var e = document.createEvent("Event");
Object.defineProperty(e, "property", { get: function() { return 239; } });
console.log(e);
2. Expand Event object.
Property with name "property" should be represented as getter with ellipsis for its evaluation, instead of this value 239 is presented.
,
May 23 2016
|
||
►
Sign in to add a comment |
||
Comment 1 by bugdroid1@chromium.org
, May 23 2016