-
Notifications
You must be signed in to change notification settings - Fork 1
/
test.html
28 lines (26 loc) · 917 Bytes
/
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
<html><head>
<title>Html Console Tester</title>
</head>
<body>
<div style="position: absolute;top: 30%;left: 10%;font: 50px Arial;color: blue;"><a href="./test.html?doDebug=true&maxConsoleLimit=12&consoleMinimized=false&consolePosition=top&consolePaused=false&retryDebug=true">
Test Html Console, Parameters passed through query string
</a>
<br/>
<br/>
<a href="./test_JS_Param.html">
Test Html Console, Parameters configured through script
</a>
</div>
<script type="text/javascript" src="htmlconsole.min.js"></script>
<script>
var idx=0;
for(;idx<20000;idx+=1000)
setTimeout(function(id){
console.log("This message is console.log on console idx - "+id);
console.debug("This message is console.debug on console idx - "+id);
console.error("This message is console.error on console idx - "+id);
console.info("This message is console.info on console idx - "+id);
},idx,idx);
</script>
</body>
</html>