Commit 8cfcbff2 authored by psolanki@apple.com's avatar psolanki@apple.com

Fix typo in path name. The test was just checking for onProgress was called for the content

and the error page served by Apache in this case sufficed for it to pass.

Reviewed by Alexey Proskuryakov.

* http/tests/xmlhttprequest/xmlhttprequest-no-content-length-onProgress.html:

git-svn-id: svn://svn.chromium.org/blink/trunk@81268 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent e7d249e3
2011-03-16 Pratik Solanki <psolanki@apple.com>
Reviewed by Alexey Proskuryakov.
Fix typo in path name. The test was just checking for onProgress was called for the content
and the error page served by Apache in this case sufficed for it to pass.
* http/tests/xmlhttprequest/xmlhttprequest-no-content-length-onProgress.html:
2011-03-16 Pratik Solanki <psolanki@apple.com>
Reviewed by Alexey Proskuryakov.
......@@ -33,7 +33,7 @@ var req = new XMLHttpRequest();
req.onprogress = onProgressPassed;
req.onload = checkDone;
// Test that onProgress is called on a normal file
req.open("GET", "resource/1251.html", true);
req.open("GET", "resources/1251.html", true);
req.send(null);
// If content length is not given, it should not be called
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment