[Webkit-unassigned] [Bug 109351] New: Cache XHRs is not working well as we expected.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sat Feb 9 03:10:39 PST 2013


https://bugs.webkit.org/show_bug.cgi?id=109351

           Summary: Cache XHRs is not working well as we expected.
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: All
        OS/Version: All
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: Page Loading
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: withlhw at gmail.com


Cache XHRs is not working well as we expected caused by wrong httpBody() comparison.

bool CachedRawResource::canReuse(const ResourceRequest& newRequest) const 
{
...
    if (m_resourceRequest.httpBody() != newRequest.httpBody())
        return false;
...
}

FormData* ResourceRequestBase::httpBody() returns pointer.
Hence we need to compare its value instead of pointer.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list