Closed
Bug 1190648
Opened 9 years ago
Closed 9 years ago
Add ability to clear cookies domain-wide in dev tools
Categories
(DevTools :: Storage Inspector, defect)
Tracking
(Not tracked)
RESOLVED
DUPLICATE
of bug 1231434
People
(Reporter: alex, Unassigned)
References
Details
Attachments
(2 files)
93.65 KB,
image/png
|
Details | |
7.68 KB,
patch
|
Details | Diff | Splinter Review |
User Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:41.0) Gecko/20100101 Firefox/41.0
Build ID: 20150803004002
Steps to reproduce:
Chrome offers the ability to clear all the cookies for a domain through a contextual menu (right-click) on that domain in the "Resources" tab. See attached screenshot. This is really handy and useful. Targeting individual cookies for deletion during testing is currently tedious in FF.
Updated•9 years ago
|
Component: Untriaged → Developer Tools
Status: UNCONFIRMED → NEW
Component: Developer Tools → Developer Tools: Storage Inspector
Depends on: 1031192
Ever confirmed: true
Comment 1•9 years ago
|
||
I made a push at working on this. There are couple of things to do.
Just need to make sure i'm on the right path
I need some help understanding with actor would be used to clear the items.
Things done
- Added support for context menus to the TreeWidget
- Created a clear menu item on the context menu for the Storage Tree
Where i need help
- Confirm that i'm on the right path
- How to send a message to server actor to clear the objects for the host?
Cheers
Attachment #8693015 -
Flags: feedback?(mratcliffe)
Just letting you know that we have not forgotten about this. I have been planning how we should approach adding context menus to the tree and table widgets in general.
Our approach should be the same for both widgets and should be completely generic.
We should allow each of the widgets to accept an object such as the following:
[
{
item: "Remove cookie"
message: "storage:storage-cookie-request-parent",
methodName: "clearCookie"
},
{
item: "Remove all cookies"
message: "storage:storage-cookie-request-parent",
methodName: "clearAllCookies"
},
]
From here we can build the menu and send the appropriate message back to the content process and have it act appropriately.
Anyhow, I will hold off on reviewing this until the plan is more concrete.
No longer depends on: 1031192
Comment 3•9 years ago
|
||
Cool thanks!
This was recently fixed as part of bug 1231434
Status: NEW → RESOLVED
Closed: 9 years ago
Resolution: --- → DUPLICATE
Updated•8 years ago
|
Attachment #8693015 -
Flags: feedback?(mratcliffe)
Updated•6 years ago
|
Product: Firefox → DevTools
You need to log in
before you can comment on or make changes to this bug.
Description
•