mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
57 lines
1.5 KiB
HTML
57 lines
1.5 KiB
HTML
<!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>
|