| Summary: | Web Inspector: REGRESSION(r248287): Console: function objects saved to a $n will be invoked instead of just referenced when evaluating in the Console | ||||||
|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Devin Rousso <hi> | ||||
| Component: | Web Inspector | Assignee: | Devin Rousso <hi> | ||||
| Status: | RESOLVED FIXED | ||||||
| Severity: | Normal | CC: | commit-queue, ews-watchlist, hi, inspector-bugzilla-changes, joepeck, keith_miller, mark.lam, msaboff, saam, tzagallo, webkit-bug-importer | ||||
| Priority: | P2 | Keywords: | InRadar | ||||
| Version: | WebKit Local Build | ||||||
| Hardware: | All | ||||||
| OS: | All | ||||||
| Bug Depends on: | 195834 | ||||||
| Bug Blocks: | |||||||
| Attachments: |
|
||||||
Created attachment 389620 [details]
Patch
Comment on attachment 389620 [details]
Patch
Nice. r=me
Comment on attachment 389620 [details] Patch Clearing flags on attachment: 389620 Committed r255675: <https://trac.webkit.org/changeset/255675> All reviewed patches have been landed. Closing bug. |
# STEPS TO REPRODUCE: 1. inspect any page 2. evaluate `function foo() { return "test"; }` in the Console 3. evaluate `foo` => should see `$1` 4. evaluate `$1` => `"test"` is logged instead of `function foo() { return "test"; }`