Bug 143579 - Web Inspector: Uncaught exception using console.table with filter argument
Summary: Web Inspector: Uncaught exception using console.table with filter argument
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: Web Inspector (show other bugs)
Version: 528+ (Nightly build)
Hardware: All All
: P2 Normal
Assignee: Joseph Pecoraro
URL:
Keywords: DoNotImportToRadar
Depends on:
Blocks:
 
Reported: 2015-04-09 14:48 PDT by Joseph Pecoraro
Modified: 2015-04-09 17:37 PDT (History)
8 users (show)

See Also:


Attachments
[PATCH] Proposed Fix (2.56 KB, patch)
2015-04-09 14:49 PDT, Joseph Pecoraro
no flags Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
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.