slimerjs-firefox
Version:
This repo includes slimerjs as well as downloads a local copy of Firefox.
14 lines • 398 B
HTML
<html>
<head>
<meta charset="utf-8">
<title>simple hello world</title>
<script type="text/javascript">
function doError() {
throw new Error("error on click");
}
</script>
</head>
<body> <button onclick="doError()" style="position:absolute; top:10px; left:10px">do error</button>
</body>
</html>