mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-10 01:40:50 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
|
|
@ -0,0 +1,28 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Webconsole console.group test page</title>
|
||||
</head>
|
||||
<body>
|
||||
<p>console.group() & console.groupCollapsed() test page</p>
|
||||
<script>
|
||||
"use strict";
|
||||
|
||||
function doLog() {
|
||||
console.group("group-1");
|
||||
console.log("log-1");
|
||||
console.group("group-2");
|
||||
console.log("log-2");
|
||||
console.groupEnd("group-2");
|
||||
console.log("log-3");
|
||||
console.groupEnd("group-1");
|
||||
console.log("log-4");
|
||||
console.groupCollapsed("group-3");
|
||||
console.log("log-5");
|
||||
console.groupEnd("group-3");
|
||||
console.log("log-6");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue