0
0
mirror of https://github.com/puppeteer/puppeteer synced 2024-06-14 14:02:48 +00:00
puppeteer/test/assets/consolelog.html

18 lines
252 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>console.log test</title>
</head>
<body>
<script>
function foo() {
console.log('yellow')
}
function bar() {
foo();
}
bar();
</script>
</body>
</html>