0
0
mirror of https://github.com/rkd77/elinks.git synced 2025-06-30 22:19:29 -04:00
elinks/test/js/assert/document.documentURI.html

19 lines
513 B
HTML
Raw Normal View History

2024-04-12 19:28:26 +02:00
<!DOCTYPE html>
<html>
<body>
<p>Click the button to display the location of this document</p>
<p><strong>Note:</strong> Internet Explorer does not support the documentURI property.</p>
<button onclick="myFunction()">Try it</button>
<p id="demo"></p>
<script>
function myFunction() {
var x = document.documentURI;
2024-09-24 21:43:10 +02:00
console.assert(x.endsWith('/test/js/assert/document.documentURI.html'), 'documentURI.html');
2024-04-12 19:28:26 +02:00
}
console.error('document.documentURI.html');
myFunction();
console.exit();
2024-04-12 19:28:26 +02:00
</script>
</body>
</html>