mirror of
https://github.com/rkd77/elinks.git
synced 2025-01-03 14:57:44 -05:00
15 lines
279 B
HTML
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> |