gecko/js/xpconnect/tests/chrome/file_discardSystemSource.html
2014-04-22 14:08:28 -07: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>