This repository has been archived by the owner on Jan 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
index.html
83 lines (63 loc) · 2.57 KB
/
index.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!--
Copyright 2012 Facebook Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
Remove this if you use the .htaccess -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<title>page</title>
<meta name="description" content=""/>
<!-- Replace favicon.ico & apple-touch-icon.png in the root of your domain and delete these references -->
<link rel="shortcut icon" href="/favicon.ico"/>
<link rel="apple-touch-icon" href="/apple-touch-icon.png"/>
<link rel="stylesheet" href="lib/qunit.css"/>
<script src="lib/jquery-1.7.2.js"></script>
<script type="text/javascript" src="lib/qunit.js"></script>
<script type="text/javascript">
if (!(/Firefox[\/\s](\d+\.\d+)/.test(navigator.userAgent))) {
window.indexedDB = { polyfill : true };
}
</script>
<script type="text/javascript" src="indexedDB.polyfill.js"></script>
<script type="text/javascript" src="test/webkitIndexedDB.js"></script>
<script type="text/javascript" src="test/util.js"></script>
<script type="text/javascript" src="test/IDBFactoryTests.js"></script>
<script type="text/javascript" src="test/IDBDatabaseTests.js"></script>
<script type="text/javascript" src="test/IDBObjectStoreTests.js"></script>
<script type="text/javascript" src="test/IDBObjectStoreIndexTests.js"></script>
<script type="text/javascript" src="test/IDBCursorTests.js"></script>
<script type="text/javascript" src="test/IDBIndexTests.js"></script>
</head>
<body>
<h1 id="qunit-header">QUnit example</h1>
<h2 id="qunit-banner"></h2>
<div id="qunit-testrunner-toolbar"></div>
<h2 id="qunit-userAgent"></h2>
<ol id="qunit-tests"></ol>
<div id="qunit-fixture">test markup, will be hidden</div>
<script type="text/javascript">
//PerformanceTests.run();
QUnit.testStart(function () {
QUnit.config.current.ignoreGlobalErrors = true;
});
IDBFactoryTests.run();
IDBDatabaseTests.run();
IDBObjectStoreTests.run();
IDBObjectStoreIndexTests.run();
IDBCursorTests.run();
IDBIndexTests.run();
</script>
</body>
</html>