krisnantokrisnanto / jqueryjs

Automatically exported from code.google.com/p/jqueryjs
0 stars 0 forks source link

env.js's implementation of XMLHttpRequest.open ignores async parameter #18

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
At http://jqueryjs.googlecode.com/svn/trunk/jquery/build/runtest/env.js
Line 571
    if (async)
      this.async = true;
Line 690:
    async: true,
async is initialized to true and only ever set to true.  There is
additional code that switches on async, so the flag is significant.

What steps will reproduce the problem?
1. set document.location which calls XMLHttpRequest with async unspecified

What is the expected output? What do you see instead?
document is created asynchronously on a separate thread.

What version of the product are you using? On what operating system?
The version from trunk revision 4373

Original issue reported on code.google.com by mikesamuel@gmail.com on 9 Jan 2008 at 12:48

GoogleCodeExporter commented 8 years ago
Thank you for writing up this problem.  Unfortunately we use a different bug 
tracking system at http://dev.jquery.com/ so it has been moved.  In the future, 
please use that system for tracking issues.

The new ticket can be found here:

http://dev.jquery.com/ticket/2153

Thanks.

Original comment by davidser...@gmail.com on 11 Jan 2008 at 6:48