mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
273 B
HTML
19 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>
|