mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
18 lines
256 B
HTML
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>
|