add simple javascript test calling operation with too few arguemnts

This commit is contained in:
Vincent Sanders 2015-08-11 14:36:03 +01:00
parent c1d5bbe7df
commit e91255b409
2 changed files with 16 additions and 0 deletions

View File

@ -65,6 +65,11 @@
</ul>
<h2>Errors</h2>
<ul>
<li><a href="parameter-error.html">Missing parameters</a></li>
</ul>
<h2>Assorted</h2>
<ul>
<li><a href="assorted-log-doc-write.html">console.log and document.write</a></li>

View File

@ -0,0 +1,11 @@
<html>
<head><title>Insuficient parameters error</title></head>
<body>
<h1>Insuficient parameters error</h1>
<p>Before</p>
<script>
document.createComment();
</script>
<p>Afterwards</p>
</body>
</html>