mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
LibWeb: Fire error event when script has an execution error
We now use the "report an exception" AO when a script has an execution error. This has mostly replaced the older "report the exception" AO in various specifications. Using this newer AO ensures that `window.onerror` is invoked when a script has an execution error.
This commit is contained in:
1
Tests/LibWeb/Text/expected/HTML/Window-onerror.txt
Normal file
1
Tests/LibWeb/Text/expected/HTML/Window-onerror.txt
Normal file
@@ -0,0 +1 @@
|
||||
onerror event fired: Error: Uncaught error
|
||||
16
Tests/LibWeb/Text/input/HTML/Window-onerror.html
Normal file
16
Tests/LibWeb/Text/input/HTML/Window-onerror.html
Normal file
@@ -0,0 +1,16 @@
|
||||
<!DOCTYPE html>
|
||||
<script src="../include.js"></script>
|
||||
<script>
|
||||
asyncTest(done => {
|
||||
window.addEventListener("error", (event) => {
|
||||
println(`onerror event fired: ${event.error}`);
|
||||
done();
|
||||
});
|
||||
|
||||
try {
|
||||
throw new Error("FAIL");
|
||||
} catch (e) {}
|
||||
|
||||
throw new Error("Uncaught error");
|
||||
});
|
||||
</script>
|
||||
Reference in New Issue
Block a user