playwright/test/assets/error.html

16 lines
133 B
HTML
Raw Normal View History

2019-11-18 18:18:28 -08:00
<script>
a();
function a() {
b();
}
function b() {
c();
}
function c() {
throw new Error('Fancy error!');
}
</script>