michael@0: /** michael@0: * Any copyright is dedicated to the Public Domain. michael@0: * http://creativecommons.org/publicdomain/zero/1.0/ michael@0: */ michael@0: for (var string in self.location) { michael@0: var value = typeof self.location[string] === "function" michael@0: ? self.location[string]() michael@0: : self.location[string]; michael@0: postMessage({ "string": string, "value": value }); michael@0: } michael@0: postMessage({ "string": "testfinished" });