mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
17 lines
149 B
HTML
17 lines
149 B
HTML
<!DOCTYPE html>
|
|
<script>
|
|
a();
|
|
|
|
function a() {
|
|
b();
|
|
}
|
|
|
|
function b() {
|
|
c();
|
|
}
|
|
|
|
function c() {
|
|
throw new Error('Fancy error!');
|
|
}
|
|
</script>
|