Update CrOS OOBE throbber to MD throbber; delete old asset
[chromium-blink-merge.git] / chrome / test / data / geolocation / iframe_controller.js
bloba36a3b6291db5e1751570b04ab94d99e226783e6
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 var iframe_hosts = ['http://127.0.0.1', 'http://localhost'];
6 function getIFrameSrc(iframe_id) {
7   var port = location.port;
8   var path = location.pathname.substring(0, location.pathname.lastIndexOf('/'));
9   var url = iframe_hosts[iframe_id] + ':' + port + path + '/simple.html';
10   return url;
12 function addIFrame(iframe_id, iframe_src) {
13   var id = 'iframe_' + iframe_id;
14   var iframe = document.getElementById(id);
15   if (iframe_src) {
16     iframe.src = iframe_src;
17   } else {
18     iframe.src = getIFrameSrc(iframe_id);
19   }
20   return "" + iframe_id;