puppeteer/test/assets/error.html

17 lines
149 B
HTML
Raw Normal View History

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