[Webkit-unassigned] [Bug 137306] Web Inspector: Expanding event objects in console shows undefined for most values, it should have real values

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Dec 15 16:53:46 PST 2014


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

Joseph Pecoraro <joepeck at webkit.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |burg at cs.washington.edu

--- Comment #3 from Joseph Pecoraro <joepeck at webkit.org> ---
I think we need to make a couple changes here.

Given: js> console.log(o)

  (1) First, get all the properties on "o" (all prototypes, all configurations)
     => expanding "o" you will see ALL the properties and values, no matter where they are in the prototype chain
     => we can display own properties / non-own properties differently if we feel that is useful.
     - requires a change in InjectedScriptSource.js

  (2) Expanding prototypes, get all the own properties of that prototype and show their value on "o"
     => now you will see specifically the properties defined by that prototype
     => they will have real values, instead of always undefined and a silenced exception.

-- 
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/20141216/5eb5b9a7/attachment-0002.html>


More information about the webkit-unassigned mailing list