-
Notifications
You must be signed in to change notification settings - Fork 2
/
tests_results.html
34 lines (31 loc) · 1013 Bytes
/
tests_results.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
<!DOCTYPE html>
<html>
<head>
<title>Highsoft WebSearch test results</title>
<script src="tests_results/highsoft-websearch.js"></script>
</head>
<body>
<header>
<h1>Highsoft WebSearch test results</h1>
<div id="search">
<input type="search" />
<button>Search</button>
<div></div>
</div>
</header>
<script>
(function (window) {
var searchContainer = document.getElementById('search');
if (searchContainer === null) {
return;
}
HighsoftWebSearch.connect(
'tests_results/',
searchContainer.getElementsByTagName('input')[0],
searchContainer.getElementsByTagName('button')[0],
searchContainer.getElementsByTagName('div')[0]
);
})(this);
</script>
</body>
</html>