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