2010-12-10 09:28:17 -08:00
|
|
|
<!DOCTYPE HTML>
|
|
|
|
<html dir="ltr" xml:lang="en-US" lang="en-US"><head>
|
2012-03-24 04:34:42 -07:00
|
|
|
<meta charset="utf-8">
|
2010-12-10 09:28:17 -08:00
|
|
|
<title>Console extended API test</title>
|
|
|
|
<script type="text/javascript">
|
|
|
|
function test() {
|
|
|
|
console.log("start");
|
|
|
|
console.exception()
|
|
|
|
console.assert()
|
|
|
|
console.clear()
|
|
|
|
console.dirxml()
|
|
|
|
console.profile()
|
|
|
|
console.profileEnd()
|
|
|
|
console.count()
|
|
|
|
console.table()
|
|
|
|
console.log("end");
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1 id="header">Heads Up Display Demo</h1>
|
|
|
|
<button onclick="test();">Test Extended API</button>
|
|
|
|
<div id="myDiv"></div>
|
|
|
|
</body>
|
|
|
|
</html>
|