Changeset 181902 in webkit
- Timestamp:
- Mar 24, 2015, 1:11:38 PM (11 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
NetworkProcess/cache/NetworkCache.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r181895 r181902 1 2015-03-24 Chris Dumez <cdumez@apple.com> 2 3 [WK2] Remove NetworkCache FIXME comment about caching responses to OPTIONS requests 4 https://bugs.webkit.org/show_bug.cgi?id=143009 5 6 Reviewed by Andreas Kling. 7 8 Remove NetworkCache FIXME comment about caching responses to OPTIONS 9 method as RFC 7234 says "Responses to the OPTIONS method are not 10 cacheable" [1]. 11 12 [1] http://tools.ietf.org/html/rfc7231#page-31 13 14 * NetworkProcess/cache/NetworkCache.cpp: 15 (WebKit::NetworkCache::canRetrieve): 16 1 17 2015-03-24 Chris Dumez <cdumez@apple.com> 2 18 -
trunk/Source/WebKit2/NetworkProcess/cache/NetworkCache.cpp
r181894 r181902 246 246 static RetrieveDecision canRetrieve(const WebCore::ResourceRequest& request) 247 247 { 248 // FIXME: Support HEAD and OPTIONSrequests.248 // FIXME: Support HEAD requests. 249 249 if (request.httpMethod() != "GET") 250 250 return RetrieveDecision::NoDueToHTTPMethod;
Note:
See TracChangeset
for help on using the changeset viewer.