Currently, web inspector explicitly filters the resource URLs it will display cookies for to only include file, http and https URLs. Thus, when using the inspector on some other resource (e.g. a chrome extension), it won't display any cookies even if there are some.
Created attachment 52146 [details] Patch
Comment on attachment 52146 [details] Patch > + this._addCookieDomain(match[2] ? match[2] : ""); > } I think you can simplify it even further due to (match[2] ? match[2] : "") === match[2]
Created attachment 52154 [details] patch
(In reply to comment #2) > I think you can simplify it even further due to > > (match[2] ? match[2] : "") === match[2] Considering that a successful match of the regex always gives us a defined match[2], that's correct. Didn't think of that, thanks.(In reply to comment #2)
Comment on attachment 52154 [details] patch Clearing flags on attachment: 52154 Committed r56840: <http://trac.webkit.org/changeset/56840>
All reviewed patches have been landed. Closing bug.