mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-12-29 02:31:05 +00:00
19 lines
474 B
HTML
19 lines
474 B
HTML
<!DOCTYPE HTML>
|
|
<html dir="ltr" xml:lang="en-US" lang="en-US"><head>
|
|
<meta charset="utf-8">
|
|
<title>Console extended API test</title>
|
|
<script type="text/javascript">
|
|
function test() {
|
|
console.log("start");
|
|
console.clear();
|
|
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>
|