witten
/
luminotes
Archived
1
0
Fork 0
This repository has been archived on 2023-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
luminotes/static/jsunit/tests/jsUnitOnLoadTests.html

29 lines
867 B
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JsUnit OnLoad Tests</title>
<link rel="stylesheet" type="text/css" href="../css/jsUnitStyle.css">
<script language="JavaScript" type="text/javascript" src="../app/jsUnitCore.js"></script>
<script language="JavaScript" type="text/javascript">
var aVar = null;
function testOnLoadFired() {
assertEquals("foo", aVar);
}
function myOnLoadEvent() {
aVar = "foo";
}
</script>
</head>
<body onload="myOnLoadEvent()">
<h1>JsUnit OnLoad Tests</h1>
<p>This page contains tests for the JsUnit Framework. To see them, take a look at the source.</p>
</body>
</html>