Do not announce robot account token before account ID is available
[chromium-blink-merge.git] / chrome / test / data / login / load_img_from_b.html
blob96b93fcea068a4d8b4e59e640f1e76b74a702173
1 <html>
2 <body>
3 This page will attempt to load an image requiring basic auth from the
4 domain www.b.com using the same port that it loaded (since we assume www.b.com
5 is an alias for this same server).
7 <script>
8 var img = document.createElement("img");
9 img.src = "http://www.b.com:" + location.port + "/auth-basic/foo.jpg";
10 document.body.appendChild(img);
11 </script>
12 </body>
13 </html>