mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-19 02:43:07 +09:00
18 lines
356 B
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>
|