playwright/test/assets/error.html

16 lines
133 B
HTML
Raw Normal View History

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