puppeteer/test/assets/error.html

16 lines
133 B
HTML
Raw Normal View History

2017-06-16 18:35:03 +00:00
<script>
a();
function a() {
b();
}
function b() {
c();
}
function c() {
throw new Error('Fancy error!');
}
</script>