puppeteer/test/assets/consoletrace.html
2024-05-29 18:37:52 +02:00

18 lines
256 B
HTML

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