Unregister from GCM when the only GCM app is removed
[chromium-blink-merge.git] / chrome / test / data / login / load_iframe_from_b.html
blob82994c584d3ec5f31e6e3b73f347da37dc32be9c
1 <html>
2 <body>
3 This page will attempt to load an iframe 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 f = document.createElement("iframe");
9 f.src = "http://www.b.com:" + location.port + "/auth-basic/index.html";
10 document.body.appendChild(f);
11 </script>
12 </body>
13 </html>