forked from madrobby/zepto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpolyfill.html
52 lines (45 loc) · 1.32 KB
/
polyfill.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
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<link rel="stylesheet" href="test.css">
<title>Zepto compatibility unit tests</title>
<script src="../vendor/evidence.js"></script>
<script src="evidence_runner.js"></script>
<script src="../src/polyfill.js"></script>
<script src="../src/zepto.js"></script>
</head>
<body>
<h1>Compatibility tests</h1>
<p id="results">
Running… see browser console for results
</p>
<script>
(function(){
Evidence('PolyfillTest', {
// test to see if we augment String.prototype.trim if not supported natively
testTrim: function(t){
t.assertEqual("blah", " blah ".trim())
},
// test to see if we augment Array.prototype.reduceif not supported natively
testReduce: function(t){
t.assertEqual(
10,
[0,1,2,3,4].reduce(function(p,c){ return p+c })
)
t.assertEqual(
20,
[0,1,2,3,4].reduce(function(p,c){ return p+c }, 10)
)
var flattened = [[0,1], [2,3], [4,5]].reduce(function(a,b){
return a.concat(b)
})
t.assertEqual(6, flattened.length)
for(var i=0;i<6;i++) t.assertEqual(i, flattened[i])
}
})
})()
</script>
</body>
</html>