1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-07-01 02:05:33 +00:00
elinks/test/ecmascript/assert/document.domain.html
2024-04-12 19:31:32 +02:00

23 lines
393 B
HTML

<!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>