mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-17 01:33:16 +03:00
add simple javascript test calling operation with too few arguemnts
This commit is contained in:
parent
c1d5bbe7df
commit
e91255b409
@ -65,6 +65,11 @@
|
|||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
|
<h2>Errors</h2>
|
||||||
|
<ul>
|
||||||
|
<li><a href="parameter-error.html">Missing parameters</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
<h2>Assorted</h2>
|
<h2>Assorted</h2>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="assorted-log-doc-write.html">console.log and document.write</a></li>
|
<li><a href="assorted-log-doc-write.html">console.log and document.write</a></li>
|
||||||
|
11
test/js/parameter-error.html
Normal file
11
test/js/parameter-error.html
Normal 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>
|
Loading…
Reference in New Issue
Block a user