Home | History | Annotate | Download | only in front-end

Lines Matching defs:Cookie

31 // Ideally, we would rely on platform support for parsing a cookie, since
33 // platform cookie parsing logic would require quite a bit of additional
34 // plumbing, and at least some platforms lack support for parsing Cookie,
35 // which is in a format slightly different from Set-Cookie and is normally
57 this._addCookie(kv, WebInspector.Cookie.Type.Request);
72 this._addCookie(kv, WebInspector.Cookie.Type.Response);
106 // cookie values, though.
109 console.log("Failed parsing cookie header before: " + this._input);
136 // specifying a value for a cookie with empty name.
137 this._lastCookie = keyValue.value ? new WebInspector.Cookie(keyValue.key, keyValue.value, type) :
138 new WebInspector.Cookie("", keyValue.key, type);
154 WebInspector.Cookie = function(name, value, type)
162 WebInspector.Cookie.prototype = {
207 WebInspector.Cookie.Type = {