129 lines
3.5 KiB
HTML
129 lines
3.5 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>check.wit.com</title>
|
|
<style>
|
|
body {
|
|
width: 100em;
|
|
margin: 0 auto;
|
|
font-family: Tahoma, Verdana, Arial, sans-serif;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<br>
|
|
<br>
|
|
<br>
|
|
|
|
Your web browser is:
|
|
<script LANGUAGE= "javascript">
|
|
document.write(navigator.userAgent + "<br><br>");
|
|
document.write(navigator.appName + "<br><br>");
|
|
</script>
|
|
|
|
|
|
<a href="http://check.wit.com:1200/">Hugo minx demo</a><br/>
|
|
<a href="http://check.wit.com:1201/">Hugo ananka demo</a><br/>
|
|
|
|
<h2>Browser benchmarks</h2>
|
|
<a href="http://check.wit.com:1202/polygon-shredder">Polygon demo</a><br/>
|
|
<a href="http://check.wit.com:1202/Icicle-Bubbles/app/">Icicle-Bubbles demo</a><br/>
|
|
<a href="http://check.wit.com:1202/cabbibo-Text">Text demo</a><br/>
|
|
|
|
<h2>GO benchmarks</h2>
|
|
<a href="https://github.com/golang/go/wiki/Benchmarks">Standard GO benchmarks</a><br/>
|
|
<a href="https://godoc.org/golang.org/x/benchmarks">GO benchmark docs</a><br/>
|
|
|
|
<h2>your web browser</h2>
|
|
<a href="https://www.whatsmybrowser.org/">Show your browser details</a><br/>
|
|
<a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Browser_detection_using_the_user_agent">Parsing user agent</a><br/>
|
|
|
|
<a href="javascript1.html">java test1</a><br/>
|
|
<a href="javascript2.html">java test2</a><br/>
|
|
<a href="javascript3.html">java test3</a><br/>
|
|
<a href="javascript_dump/">dump javascript info</a><br/>
|
|
|
|
<br>
|
|
<FORM>
|
|
<INPUT TYPE="text" VALUE= "dont change" NAME = "leavebutton"
|
|
onChange= "alert('changing this will cause an alert')">
|
|
</FORM>
|
|
|
|
<h2>All objects in window.navigator</h2>
|
|
<table>
|
|
<script language="JavaScript" type="text/javascript">
|
|
for (var n in window.navigator) {
|
|
document.write("<tr>");
|
|
document.write("<th align='left'>window.navigator." + n + "<\/th>");
|
|
document.write("<th align='left'>" + window.navigator[n] + "<\/th>");
|
|
document.write("<\/tr>");
|
|
}
|
|
</script>
|
|
</table>
|
|
|
|
|
|
<h2>All objects in window.screen.orientation</h2>
|
|
<table>
|
|
<script language="JavaScript" type="text/javascript">
|
|
for (var n in window.screen.orientation) {
|
|
document.write("<tr>");
|
|
document.write("<th align='left'>window.screen.orientation." + n + "<\/th>");
|
|
document.write("<th align='left'>" + window.screen.orientation[n] + "<\/th>");
|
|
document.write("<\/tr>");
|
|
}
|
|
</script>
|
|
</table>
|
|
|
|
<h2>All objects in window.screen</h2>
|
|
<table>
|
|
<script language="JavaScript" type="text/javascript">
|
|
for (var n in window.screen) {
|
|
document.write("<tr>");
|
|
document.write("<th align='left'>window.screen" + n + "<\/th>");
|
|
document.write("<th align='left'>" + window.screen[n] + "<\/th>");
|
|
document.write("<\/tr>");
|
|
}
|
|
</script>
|
|
</table>
|
|
|
|
<h2>All objects in window</h2>
|
|
<table>
|
|
<script language="JavaScript" type="text/javascript">
|
|
for (var n in window) {
|
|
document.write("<tr>");
|
|
document.write("<th align='left'>window." + n + "<\/th>");
|
|
document.write("<th align='left'>" + window[n] + "<\/th>");
|
|
document.write("<\/tr>");
|
|
}
|
|
// window.outerWidth = 2100;
|
|
</script>
|
|
</table>
|
|
|
|
<h2>All objects in document</h2>
|
|
<table>
|
|
<script language="JavaScript" type="text/javascript">
|
|
for (var n in document) {
|
|
document.write("<tr>");
|
|
document.write("<th align='left'>document." + n + "<\/th>");
|
|
document.write("<th align='left'>" + document[n] + "<\/th>");
|
|
document.write("<\/tr>");
|
|
}
|
|
</script>
|
|
</table>
|
|
|
|
<a href="stuff" onMouseOver="alert('onMouseOver')">Test onMouseOver event</a><br>
|
|
|
|
<script>
|
|
document.write("<img src='favicon.ico'>")
|
|
/*
|
|
var x=window.confirm("Are you sure you want to quit")
|
|
if (x)
|
|
window.alert("Thank you.")
|
|
else
|
|
window.alert("OK. Cancel. Good choice.")
|
|
*/
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|