[Webkit-unassigned] [Bug 31133] New: Web Inspector: Add console.getProfile function

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Nov 4 11:35:19 PST 2009


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

           Summary: Web Inspector: Add console.getProfile function
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: All
        OS/Version: All
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: Web Inspector
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: boyerd at us.ibm.com
                CC: timothy at hatcher.name, rik at webkit.org,
                    casey.hattori at gmail.com, pmuellr at yahoo.com,
                    joepeck at webkit.org, pfeldman at chromium.org,
                    bweinstein at apple.com


This functionality is implemented by FireUnit plugin for Firefox (FireUnit is
an addon that modifies Firebug)

The function would return a JavaScript object that represents the profiling
data.

And example dataset would be : 

{ 
  calls : 200, // # of calls
  time : 200.00ms  // total time of profile
  data : [
    { 
     avgTime : 9.525, 
     calls : 9, 
     fileName : "test.js", 
     maxTime : 25,
     minTime : 8,
     name : "doSomethingFunction",
     ownTime : 85.727,  // Time executing in me (not child functions)
     percent : 26.21,
     time : 85.727  // Total time spent in me (and child calls)
   },
    <...>
  ]
}

Can't find the function documented in fireunit plugin, but it's there.
I'm making the same request at Firebug, to move this from the fireunit addon
into the firebug addon.

Ideally the result js from the two functions should be identical.

http://fireunit.org/

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