mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
[assert] document.domain
This commit is contained in:
parent
351aa1fce7
commit
e32c69f05f
23
test/ecmascript/assert/document.domain.html
Normal file
23
test/ecmascript/assert/document.domain.html
Normal 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>
|
Loading…
Reference in New Issue
Block a user