Source code

Revision control

Copy as Markdown

Other Tools

/**
* Any copyright is dedicated to the Public Domain.
*/
for (var string in self.location) {
var value =
typeof self.location[string] === "function"
? self.location[string]()
: self.location[string];
postMessage({ string, value });
}
postMessage({ string: "testfinished" });