mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-18 02:13:08 +09:00
18 lines
273 B
HTML
18 lines
273 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
function canary() {
|
|
var someBitOfSource = 42;
|
|
}
|
|
function inner() {
|
|
throw new Error("some error");
|
|
}
|
|
function throwSomething() {
|
|
inner();
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="someBitOfSource = 42">
|
|
</body>
|
|
</html>
|