1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-01-03 14:57:44 -05:00
elinks/test/js/assert/document.location.href.html
2024-09-24 21:43:10 +02:00

15 lines
279 B
HTML

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