| Summary: | Web Inspector: console.table() with a list of objects no longer works | ||||||
|---|---|---|---|---|---|---|---|
| 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: | InRadar | ||||
| Version: | 528+ (Nightly build) | ||||||
| Hardware: | All | ||||||
| OS: | All | ||||||
| Attachments: |
|
||||||
Created attachment 254841 [details]
[PATCH] Proposed Fix
Comment on attachment 254841 [details] [PATCH] Proposed Fix Clearing flags on attachment: 254841 Committed r185540: <http://trac.webkit.org/changeset/185540> All reviewed patches have been landed. Closing bug. inspector/console/console-table.html times out every time on Windows and Gtk. 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. |
* 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