forked from bitovi/jquerypp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqunit.html
More file actions
24 lines (24 loc) · 777 Bytes
/
qunit.html
File metadata and controls
24 lines (24 loc) · 777 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="../funcunit/qunit/qunit.css" />
<title>jQuery++ QUnit Test</title>
<script type="text/javascript">
if (typeof window.console === "undefined") {
console = {};
console.log = console.warn = console.error = function(a){};
}
</script>
<script type='text/javascript' src='../steal/steal.js?jquerypp/test'></script>
</head>
<body>
<h1 id="qunit-header">jQuery++ Test Suite</h1>
<h2 id="qunit-banner"></h2>
<div id="qunit-testrunner-toolbar"></div>
<h2 id="qunit-userAgent"></h2>
<div id="test-content"></div>
<ol id="qunit-tests"></ol>
<div id="qunit-test-area"></div>
</body>
</html>