aboutsummaryrefslogtreecommitdiff
path: root/catapult/telemetry/telemetry/internal/testing/page_that_logs_to_console.html
blob: 373eebc60a831e88e563b2461a7f6119daf08c05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE HTML>
<html>
<head>
</head>
<body>
<script>
  window.__logCount = 0;
  setInterval(function() {
    console.log("Hello, world")
    window.__logCount += 1
  }, 100);
</script>
</body>
</html>