Pin Chrome's shortcut to the Win10 Start menu on install and OS upgrade.
[chromium-blink-merge.git] / chrome / test / data / extensions / get_app_details_for_frame.html
blob051dc897f4aefe7d9102483140f0755fada4ac88
1 <script>
2 function getFrameURL(host) {
3 var result = "http://" + host;
4 if (location.port) {
5 result += ":";
6 result += location.port;
8 result += location.pathname;
9 return result;
12 var iframe = document.createElement("iframe");
13 iframe.src = getFrameURL("app.com");
14 document.documentElement.appendChild(iframe);
15 </script>