mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
16 lines
133 B
HTML
16 lines
133 B
HTML
![]() |
<script>
|
||
|
a();
|
||
|
|
||
|
function a() {
|
||
|
b();
|
||
|
}
|
||
|
|
||
|
function b() {
|
||
|
c();
|
||
|
}
|
||
|
|
||
|
function c() {
|
||
|
throw new Error('Fancy error!');
|
||
|
}
|
||
|
</script>
|