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

[assert] document.baseURI

This commit is contained in:
Witold Filipczyk 2024-04-12 16:37:47 +02:00
parent da14bf16cd
commit ca3cc5b214

View File

@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<body>
<p>Click the button to display the base URI of the document.</p>
<button onclick="myFunction()">Try it</button>
<p><strong>Note:</strong> The baseURI property is not supported in Internet Explorer.</p>
<p id="demo"></p>
<script>
function myFunction() {
var x = document.baseURI;
console.assert(x.endsWith('document.baseURI.html'), 'baseURI');
}
console.error('document.baseURI');
myFunction();
console.exit(0);
</script>
</body>
</html>