summaryrefslogtreecommitdiffstats
path: root/remote/test/puppeteer/test/assets/error.html
blob: 130400c00612c81f6fa2a0ab71d203a52933249f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<script>
a();

function a() {
    b();
}

function b() {
    c();
}

function c() {
    throw new Error('Fancy error!');
}
</script>