0
0
mirror of https://github.com/rkd77/elinks.git synced 2025-06-30 22:19:29 -04:00
elinks/test/js/assert/document.scripts.html
2025-03-30 18:21:16 +02:00

17 lines
245 B
HTML

<!DOCTYPE html>
<html>
<body>
<script>
console.error('document.scripts.html');
</script>
<script>
function myFunction() {
var x = document.scripts.length;
console.assert(x === 2, x);
}
myFunction();
console.exit();
</script>
</body>
</html>