trisquel-icecat/icecat/devtools/client/webconsole/test/browser/test-eval-error.html

16 lines
247 B
HTML

<script>
/* eslint-disable no-unused-vars */
"use strict";
function throwErrorObject() {
throw new Error("ThrowErrorObject");
}
function throwValue(value) {
otherFunction(value);
}
function otherFunction(value) {
throw value;
}
</script>