1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-11-04 08:17:17 -05:00
elinks/test/ecmascript/assert/document.baseURI.html
Witold Filipczyk 8b1fa5e1ff [mujs] Code related to document "similar" to quickjs and spidermonkey
Also added prototypes for endsWith and startsWith.
2024-05-19 21:08:35 +02:00

19 lines
476 B
HTML

<!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.html');
myFunction();
console.exit(0);
</script>
</body>
</html>