location_worker.js (351B)
1 /** 2 * Any copyright is dedicated to the Public Domain. 3 * http://creativecommons.org/publicdomain/zero/1.0/ 4 */ 5 for (var string in self.location) { 6 var value = 7 typeof self.location[string] === "function" 8 ? self.location[string]() 9 : self.location[string]; 10 postMessage({ string, value }); 11 } 12 postMessage({ string: "testfinished" });