25 lines
830 B
Plaintext
25 lines
830 B
Plaintext
<html>
|
|
<head>
|
|
<title>Test Internet Latency</title>
|
|
<script src="http://www.java.com/js/deployJava.js"></script>
|
|
</head>
|
|
<body>
|
|
<h1>My ISP is Time Warner</h1>
|
|
<script>
|
|
// using JavaScript to get location of JNLP
|
|
// file relative to HTML page
|
|
var dir = location.href.substring(0, location.href.lastIndexOf('/')+1);
|
|
var url = dir + "pingtw.jnlp";
|
|
deployJava.createWebStartLaunchButton(url, '1.6.0');
|
|
</script>
|
|
<h1>My ISP is Verizon</h1>
|
|
<script>
|
|
// using JavaScript to get location of JNLP
|
|
// file relative to HTML page
|
|
var dir = location.href.substring(0, location.href.lastIndexOf('/')+1);
|
|
var url = dir + "pingvz.jnlp";
|
|
deployJava.createWebStartLaunchButton(url, '1.6.0');
|
|
</script>
|
|
</body>
|
|
</html>
|