[Webkit-unassigned] [Bug 105610] New: [Qt] QtWebKit should treat unexpected 100-continue as 200-OK

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Dec 20 20:44:17 PST 2012


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

           Summary: [Qt] QtWebKit should treat unexpected 100-continue as
                    200-OK
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Unspecified
        OS/Version: Unspecified
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: Page Loading
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: chenzx at cn.fujitsu.com


Test method: deploy below perl script as test.cgi to Apache/Xampp:

#!c:/perl/bin/perl.exe

$Error = @ARGV[0];
$body  = @ARGV[1];

if ( $Error == 100 )
{
        print "HTTP/1.1 100 Continue\n\n" ;
        print "<html><body>$Error<br></body></html>\n";
        print "HTTP/1.1 200 OK\n\n" ;
        print "<html><body>OK<br></body></html>\n\n";
        return;
}

then access /cgi-bin/test.cgi?100

Chrome display the result as: 
100
HTTP/1.1 200 OK
OK

While QtWebKit does not display anything, something wrong happens in http network reply dealment.

PS: Use the newest Firefox to test, it displays ONLY 1 "OK", seems its http-response/content handler is wierd?

-- 
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