123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <!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>
|