Reland the ULONG -> SIZE_T change from 317177
[chromium-blink-merge.git] / tools / telemetry / unittest_data / page_that_logs_to_console.html
blob373eebc60a831e88e563b2461a7f6119daf08c05
1 <!DOCTYPE HTML>
2 <html>
3 <head>
4 </head>
5 <body>
6 <script>
7 window.__logCount = 0;
8 setInterval(function() {
9 console.log("Hello, world")
10 window.__logCount += 1
11 }, 100);
12 </script>
13 </body>
14 </html>