1
0
Fork 0
firefox/js/xpconnect/tests/chrome/file_discardSystemSource.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

19 lines
320 B
HTML

<!DOCTYPE html>
<html>
<head>
<script>
function canary() {
// eslint-disable-next-line no-unused-vars
var someBitOfSource = 42;
}
function inner() {
throw new Error("some error");
}
function throwSomething() {
inner();
}
</script>
</head>
<body onload="someBitOfSource = 42">
</body>
</html>