[Webkit-unassigned] [Bug 83866] New: [BlackBerry] Missing request received reponse on request.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Apr 13 00:25:26 PDT 2012


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

           Summary: [BlackBerry] Missing request received reponse on
                    request.
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Unspecified
        OS/Version: Other
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: WebKit BlackBerry
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: jason.liu at torchmobile.com.cn
                CC: tonikitoo at webkit.org


<html>
<head>
<script type="text/javascript">
response =0;
function loadXMLDoc()
{
var xmlhttp;
if (window.XMLHttpRequest)
  {// code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttp=new XMLHttpRequest();

  }
else
  {// code for IE6, IE5
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
xmlhttp.onreadystatechange=function()
  {
  if (xmlhttp.readyState)

        console.log(xmlhttp);
      response++;
       document.getElementById("myDiv").innerHTML+=xmlhttp.readyState;


  }

xmlhttp.open("HEAD","empty.txt",true);
xmlhttp.setRequestHeader("Empty-Header", "");
xmlhttp.send();
}
</script>
</head>
<body>
This is what 2.0.1 and desktop get <br/>
1: server connection established<br/>
2: request received <br/>
4: request finished and response is ready<br/>
<br/>
2.1.0 on generates this<br/>

1: server connection established<br/>
4: request finished and response is ready<br/>
<div id="myDiv"><h2>Requests</h2></div>
<button type="button" onclick="loadXMLDoc()">Test Me</button>

</body>
</html>



expected: 
1: server connection established
2: request received 
4: request finished and response is ready

actual:
2.1.0  generates this
1: server connection established
4: request finished and response is ready

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