Files
UXP-Fixed/js/xpconnect/tests/chrome/file_discardSystemSource.html
T
2018-02-02 04:16:08 -05:00

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>