forked from jonstipe/number-polyfill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
unittest.html
47 lines (43 loc) · 1.18 KB
/
unittest.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>HTML5 Number polyfill</title>
<meta name="author" content="Jonathan Stipe" />
<meta name="copyright" content="© 2012 Jonathan Stipe" />
<link rel="stylesheet" type="text/css" href="vendor/qunit/qunit-1.12.0.css" />
<link rel="stylesheet" type="text/css" href="number-polyfill.css" />
<style type="text/css">
.hiddenClass {
visibility: hidden;
}
.opacityZero {
opacity: 0;
}
.opacityHalf {
opacity: 0.5;
}
.opacityOne {
opacity: 1;
}
.noneClass {
display: none;
}
</style>
<script type="text/javascript" src="vendor/jquery/jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="number-polyfill.js"></script>
<script type="text/javascript">
//<![CDATA[
$(function(){
$("<script/>", { type: "text/javascript", src: "test/spec.js" }).appendTo("head");
});
//]]>
</script>
<script type="text/javascript" src="vendor/qunit/qunit-1.12.0.js"></script>
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<a href="https://github.com/jonstipe/number-polyfill">Back to GitHub repo</a>
</body>
</html>