| Summary: | Web Inspector: Uncaught exception using console.table with filter argument | ||||||
|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Joseph Pecoraro <joepeck> | ||||
| Component: | Web Inspector | Assignee: | 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: |
|
||||||
Created attachment 250469 [details]
[PATCH] Proposed Fix
Comment on attachment 250469 [details] [PATCH] Proposed Fix Clearing flags on attachment: 250469 Committed r182618: <http://trac.webkit.org/changeset/182618> All reviewed patches have been landed. Closing bug. |
* 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