puppeteer/test/assets/consoletrace.html

18 lines
256 B
HTML
Raw Permalink Normal View History

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