mirror of
https://github.com/daijro/camoufox.git
synced 2026-08-21 16:01:02 +00:00
68216153f3
Adds Playwright's async tests to ensure that functionality is not broken.
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>
|