1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-15 23:35:34 +00:00

[assert] document.domain

This commit is contained in:
Witold Filipczyk 2024-04-12 19:31:32 +02:00
parent 351aa1fce7
commit e32c69f05f

View File

@ -0,0 +1,23 @@
<!DOCTYPE html>
<html>
<body>
<p>Click the button to display the domain name of the server that loaded this document.</p>
<button onclick="myFunction()">Try it</button>
<p id="demo"></p>
<script>
function myFunction() {
var x = document.domain;
console.assert(!x, 'empty for file://');
}
console.error('document.domain.html');
myFunction();
console.exit(0);
</script>
</body>
</html>