You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
662 B
HTML
36 lines
662 B
HTML
<!doctype html>
|
|
<html lang="en-us">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<title>WebPerl Tests</title>
|
|
|
|
<script src="webperl.js"></script>
|
|
<script>
|
|
"use strict";
|
|
|
|
window.onerror = function(event) {
|
|
alert('Exception thrown, see JavaScript console'); };
|
|
|
|
window.addEventListener("load", function () {
|
|
|
|
document.getElementById('output')
|
|
.appendChild( Perl.makeOutputTextarea() );
|
|
|
|
Perl.endAfterMain = true;
|
|
Perl.init(function () {
|
|
window.setTimeout(function () {
|
|
Perl.start(['/opt/perl/dev/WebPerl.t']);
|
|
}, 1);
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</head>
|
|
<body>
|
|
<p>Running tests...</p>
|
|
<div id="output"></div>
|
|
</body>
|
|
</html>
|