| Index: chrome/test/data/login/xhr_with_credentials.html
|
| diff --git a/chrome/test/data/login/xhr_with_credentials.html b/chrome/test/data/login/xhr_with_credentials.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..9e421841ba91c0ceb8fa72093f1b91e730d1eb94
|
| --- /dev/null
|
| +++ b/chrome/test/data/login/xhr_with_credentials.html
|
| @@ -0,0 +1,6 @@
|
| +<script>
|
| + var request = new XMLHttpRequest();
|
| + request.open("GET", "/auth-basic/xhr", false, "basicuser", location.hash.substring(1));
|
| + request.send("");
|
| + document.title = "status=" + request.status;
|
| +</script>
|
|
|