Closed
Bug 816210
Opened 13 years ago
Closed 13 years ago
Global searches do not cache the source text contents for displaying in the editor
Categories
(DevTools :: Debugger, defect)
DevTools
Debugger
Tracking
(Not tracked)
RESOLVED
FIXED
Firefox 20
People
(Reporter: vporof, Assigned: vporof)
Details
(Whiteboard: [fixed-in-fx-team])
Attachments
(1 file)
1.98 KB,
patch
|
past
:
review+
|
Details | Diff | Splinter Review |
This is a pretty minor optimization, but nevertheless..
STR:
1. Open debugger on http://htmlpad.org/debugger/
2. Type ! in the filter box
At this point, all the sources text contents are fetched and cached in preparation for the search operation. In this case, only jquery.min is fetched, since debugger.html is already loaded.
3. Delete the ! from the filter box. Manually select jquery from the menulist.
The jquery.min source is fetched again. This is redundant, since we have already cached the source.
Assignee | ||
Comment 1•13 years ago
|
||
Attachment #686221 -
Flags: review?(past)
Comment 2•13 years ago
|
||
Comment on attachment 686221 [details] [diff] [review]
v1
Review of attachment 686221 [details] [diff] [review]:
-----------------------------------------------------------------
It will let the debuggee avoid doing the work again, which may be important in underpowered devices, so definitely yes!
Attachment #686221 -
Flags: review?(past) → review+
Assignee | ||
Updated•13 years ago
|
Whiteboard: [land-in-fx-team]
Assignee | ||
Updated•13 years ago
|
Assignee: nobody → vporof
Status: NEW → ASSIGNED
Assignee | ||
Comment 3•13 years ago
|
||
Assignee | ||
Comment 4•13 years ago
|
||
Whiteboard: [land-in-fx-team] → [fixed-in-fx-team]
Comment 5•13 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
Target Milestone: --- → Firefox 20
Updated•7 years ago
|
Product: Firefox → DevTools
You need to log in
before you can comment on or make changes to this bug.
Description
•