mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-07 00:08:39 +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
56
devtools/client/webconsole/test/test-console-count.html
Normal file
56
devtools/client/webconsole/test/test-console-count.html
Normal file
|
|
@ -0,0 +1,56 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html dir="ltr" xml:lang="en-US" lang="en-US">
|
||||
<head>
|
||||
<!--
|
||||
Any copyright is dedicated to the Public Domain.
|
||||
http://creativecommons.org/publicdomain/zero/1.0/
|
||||
-->
|
||||
<meta charset="utf-8">
|
||||
<title>console.count() test</title>
|
||||
<script src="test-console-count-external-file.js"></script>
|
||||
<script tyoe="text/javascript">
|
||||
function counterSeperateScriptTag() {
|
||||
console.count("console.count() testcounter");
|
||||
}
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
function counterNoLabel() {
|
||||
console.count();
|
||||
}
|
||||
function countersWithoutLabel() {
|
||||
console.count();
|
||||
console.count();
|
||||
}
|
||||
function counterWithLabel() {
|
||||
console.count("console.count() testcounter");
|
||||
}
|
||||
function testLocal() {
|
||||
console.log("start");
|
||||
counterNoLabel();
|
||||
counterNoLabel();
|
||||
countersWithoutLabel();
|
||||
counterWithLabel();
|
||||
counterWithLabel();
|
||||
counterSeperateScriptTag();
|
||||
counterSeperateScriptTag();
|
||||
console.log("end");
|
||||
}
|
||||
function testExternal() {
|
||||
console.log("start");
|
||||
counterExternalFile();
|
||||
counterExternalFile();
|
||||
externalCountersWithoutLabel();
|
||||
console.log("end");
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<p>test console.count()</p>
|
||||
<button id="local" onclick="testLocal();">
|
||||
test local console.count() calls
|
||||
</button>
|
||||
<button id="external" onclick="testExternal();">
|
||||
test external console.count() calls
|
||||
</button>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue