summaryrefslogtreecommitdiffstats
path: root/remote/test/puppeteer/test/assets/consolelog.html
blob: 4a27803aa9a288b7d59d6bbcc2613b7eba15c6bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html>
  <head>
    <title>console.log test</title>
  </head>
  <body>
    <script>
      function foo() {
        console.log('yellow')
      }
      function bar() {
        foo();
      }
      bar();
    </script>
  </body>
</html>