RESOLVED FIXED 145952
Web Inspector: console.table() with a list of objects no longer works
https://bugs.webkit.org/show_bug.cgi?id=145952
Summary Web Inspector: console.table() with a list of objects no longer works
Joseph Pecoraro
Reported 2015-06-12 17:41:54 PDT
* SUMMARY console.table() with a list of objects no longer works. * 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]); </script> * STEPS TO REPRODUCE 1. Load test 2. Show console => expected table with Index, firstName, lastName and 3 rows
Attachments
[PATCH] Proposed Fix (21.33 KB, patch)
2015-06-12 17:45 PDT, Joseph Pecoraro
no flags
Radar WebKit Bug Importer
Comment 1 2015-06-12 17:42:25 PDT
Joseph Pecoraro
Comment 2 2015-06-12 17:45:30 PDT
Created attachment 254841 [details] [PATCH] Proposed Fix
WebKit Commit Bot
Comment 3 2015-06-13 13:42:41 PDT
Comment on attachment 254841 [details] [PATCH] Proposed Fix Clearing flags on attachment: 254841 Committed r185540: <http://trac.webkit.org/changeset/185540>
WebKit Commit Bot
Comment 4 2015-06-13 13:42:44 PDT
All reviewed patches have been landed. Closing bug.
Alexey Proskuryakov
Comment 5 2015-06-14 22:26:59 PDT
inspector/console/console-table.html times out every time on Windows and Gtk.
Joseph Pecoraro
Comment 6 2015-06-15 12:17:37 PDT
Skipped on Windows like the other console test in r185559. https://trac.webkit.org/changeset/185559 I did not see this test failing on GTK.
Note You need to log in before you can comment on or make changes to this bug.