Dactyloidae/devtools/client/webconsole/new-console-output/test/mochitest/test-console.html

18 lines
356 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Simple webconsole test page</title>
</head>
<body>
<p>Simple webconsole test page</p>
<script>
function doLogs(num) {
num = num || 1;
for (var i = 0; i < num; i++) {
console.log(i);
}
}
</script>
</body>
</html>