Bug 167175

Summary: Web Inspector: console.table only works for the first 5 properties
Product: WebKit Reporter: Joseph Pecoraro <joepeck>
Component: Web InspectorAssignee: Joseph Pecoraro <joepeck>
Status: RESOLVED FIXED    
Severity: Normal CC: commit-queue, inspector-bugzilla-changes, keith_miller, mark.lam, msaboff, saam
Priority: P2    
Version: WebKit Nightly Build   
Hardware: All   
OS: All   
Attachments:
Description Flags
[PATCH] Proposed Fix none

Description Joseph Pecoraro 2017-01-18 14:27:36 PST
Summary:
console.table only works for the first 5 properties

Steps to Reproduce:
1. js> console.table( performance.getResourcesOfType("resource") )
  => Only shows a few properties
2. js> console.table( performance.getResourcesOfType("resource"), ["initiatorType", "name"] )
  => "initiatorType" column works but "name" column doesn't work

Notes:
- Backend is limiting to the first 5 properties. It should send more (especially if the frontend is going to do the filtering which is currently the case)
- Frontend limits to showing max of 10 columns, we can up that.
Comment 1 Joseph Pecoraro 2017-01-18 14:29:52 PST
Created attachment 299184 [details]
[PATCH] Proposed Fix
Comment 2 WebKit Commit Bot 2017-01-18 21:07:21 PST
Comment on attachment 299184 [details]
[PATCH] Proposed Fix

Clearing flags on attachment: 299184

Committed r210910: <http://trac.webkit.org/changeset/210910>
Comment 3 WebKit Commit Bot 2017-01-18 21:07:25 PST
All reviewed patches have been landed.  Closing bug.