forked from hugoware/jlinq-beta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
40 lines (35 loc) · 1.03 KB
/
test.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
<html>
<head>
<script type="text/javascript" src="jlinq.js" ></script>
<script type="text/javascript" src="data.js" ></script>
<script type="text/javascript" src="test.js" ></script>
<style type="text/css" >
body {
font-family : sans-serif;
}
.result {
margin : 0 0 10px 0;
padding : 10px;
}
.result-title {
font-size : 13px;
font-weight : bold;
}
.result-errors {
font-size : 10px;
padding : 10px 0 0 0;
}
.result-error {
border : 1px solid #900;
background : #FEE;
}
.result-success {
border : 1px solid #090;
background : #EFE;
}
</style>
</head>
<body>
<div id="results" ><div>
</body>
</html>