1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-20 01:46:15 -04:00
elinks/test/ecmascript/assert/document.domain.html

23 lines
392 B
HTML
Raw Normal View History

2024-04-12 13:31:32 -04:00
<!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();
2024-04-12 13:31:32 -04:00
</script>
</body>
</html>