Bug 143579

Summary: Web Inspector: Uncaught exception using console.table with filter argument
Product: WebKit Reporter: Joseph Pecoraro <joepeck>
Component: Web InspectorAssignee: Joseph Pecoraro <joepeck>
Status: RESOLVED FIXED    
Severity: Normal CC: commit-queue, graouts, joepeck, jonowells, mattbaker, nvasilyev, timothy, webkit-bug-importer
Priority: P2 Keywords: DoNotImportToRadar
Version: 528+ (Nightly build)   
Hardware: All   
OS: All   
Attachments:
Description Flags
[PATCH] Proposed Fix none

Description Joseph Pecoraro 2015-04-09 14:48:26 PDT
* SUMMARY
Uncaught exception using console.table with filter argument.

* TEST
<script>
function Person(firstName, lastName) {
  this.firstName = firstName;
  this.lastName = lastName;
}

var john = new Person("John", "Smith");
var jane = new Person("Jane", "Doe");
var emily = new Person("Emily", "Jones");

console.table([john, jane, emily], ["firstName"]);
</script>

* NOTES
- Looks like we are trying to convert an object to a RemoteObject that was already converted
Comment 1 Joseph Pecoraro 2015-04-09 14:49:50 PDT
Created attachment 250469 [details]
[PATCH] Proposed Fix
Comment 2 WebKit Commit Bot 2015-04-09 17:37:24 PDT
Comment on attachment 250469 [details]
[PATCH] Proposed Fix

Clearing flags on attachment: 250469

Committed r182618: <http://trac.webkit.org/changeset/182618>
Comment 3 WebKit Commit Bot 2015-04-09 17:37:28 PDT
All reviewed patches have been landed.  Closing bug.