blob: 3ba57300cd0271f618543acc0ab2ea5296778d6f [file] [log] [blame]
<!doctype html>
<html>
<head>
<title>Globals defined by your browser</title>
</head>
<body>
<pre id="globals">
</pre>
<script>
(function () {
var list = Object.getOwnPropertyNames(window);
list.sort()
document.getElementById("globals").textContent = list.join("\n");
})();
</script>
</body>
</html>