forked from ServiceStack/ServiceStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTestMinifier.html
More file actions
63 lines (57 loc) · 1.86 KB
/
TestMinifier.html
File metadata and controls
63 lines (57 loc) · 1.86 KB
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
<!DOCTYPE HTML>
<html>
<head>
<title>Test Minifier Razor Content Page</title>
<link href="/css/bootstrap.css" rel="stylesheet" />
<link href="/css/default.css" rel="stylesheet" />
<script type="text/javascript" src="/js/underscore.min.js"></script>
<script type="text/javascript" src="/js/backbone.min.js"></script>
<script type="text/javascript" src="/js/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="/js/jsonreport.js"></script>
<style>
BODY {
background-color:white;
color:#000000;
font-family:Verdana;
margin: 0;
}
H1 {
background-color: #036;
color: #FFF;
font-family: Tahoma;
font-size: 26px;
font-weight: normal;
margin: 0;
padding: 10px 0 3px 15px;
}
#content {
padding: 15px;
}
#content-page {
max-width: 1100px;
}
#sidebar {
float:right;
}
</style>
<script type="text/javascript">
var a = 1 + 1;
console.log(a + 1);
var fn = function() {
return a + 1;
};
console.log(fn());
</script>
</head>
<body>
<h1>Test Minifier Razor Content Page</h1>
<div id="content">
<h3>HTML5 Report View</h3>
<script type="text/javascript">
var json = "[{\"id\":1,\"name\":\"foo\"},{\"id\":2,\"name\":\"bar\"},{\"id\":3,\"name\":\"baz\"}]"
document.write(_.jsonreport(json));
</script>
</div>
</body>
</html>
<!--template:TestMinifier.html-->