mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-02 10:34:27 +03:00
18 lines
208 B
HTML
18 lines
208 B
HTML
<!DOCTYPE html> <script>
|
|
console.error('Not a JS error');
|
|
a();
|
|
|
|
function a() {
|
|
b();
|
|
}
|
|
|
|
function b() {
|
|
c();
|
|
}
|
|
|
|
function c() {
|
|
throw new Error('Fancy error!');
|
|
}
|
|
//# sourceURL=myscript.js
|
|
</script>
|