forked from fin-hypergrid/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (54 loc) · 2.38 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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
<title>Tests</title>
<script src="../../webcomponentsjs/webcomponents.js"></script>
<script src="../../web-component-tester/browser.js"></script>
</head>
<body>
<script>
WCT.loadSuites([
'behaviors/fin-hypergrid-behavior-base.js',
'behaviors/fin-hypergrid-behavior-default.js',
'behaviors/fin-hypergrid-behavior-gol.js',
'behaviors/fin-hypergrid-behavior-in-memory.js',
'behaviors/fin-hypergrid-behavior-json.js',
'behaviors/fin-hypergrid-behavior-q.js',
'behaviors/fin-hypergrid-behavior-qtree.js',
'behaviors/fin-hypergrid-behavior-web-worker.js',
'bitset.min.js',
'cell-editors/fin-hypergrid-cell-editor-base.js',
'cell-editors/fin-hypergrid-cell-editor-choice.js',
'cell-editors/fin-hypergrid-cell-editor-color.js',
'cell-editors/fin-hypergrid-cell-editor-date.js',
'cell-editors/fin-hypergrid-cell-editor-simple.js',
'cell-editors/fin-hypergrid-cell-editor-slider.js',
'cell-editors/fin-hypergrid-cell-editor-spinner.js',
'cell-editors/fin-hypergrid-cell-editor-textfield.js',
'data.js',
'data-models/fin-hypergrid-data-model-base.js',
'features/fin-hypergrid-feature-base.js',
'features/fin-hypergrid-feature-cell-click.js',
'features/fin-hypergrid-feature-cell-editing.js',
'features/fin-hypergrid-feature-cell-selection.js',
'features/fin-hypergrid-feature-column-autosizing.js',
'features/fin-hypergrid-feature-column-moving.js',
'features/fin-hypergrid-feature-column-resizing.js',
'features/fin-hypergrid-feature-column-selection.js',
'features/fin-hypergrid-feature-column-sorting.js',
'features/fin-hypergrid-feature-key-paging.js',
'features/fin-hypergrid-feature-on-hover.js',
'features/fin-hypergrid-feature-overlay.js',
'features/fin-hypergrid-feature-row-resizing.js',
'features/fin-hypergrid-feature-thumbwheel-scrolling.js',
'fin-hypergrid.js',
'fin-hypergrid-cell-provider.js',
'fin-hypergrid-excel.js',
'fin-hypergrid-renderer.js',
'fin-hypergrid-selection-model.js',
]);
</script>
</body>
</html>