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

[assert] document.characterSet

This commit is contained in:
Witold Filipczyk 2024-04-12 16:53:26 +02:00
parent d696ca2f96
commit b9428b846c

View File

@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<body>
<p>Click the button to check the encoding of this document.</p>
<button onclick="myFunction()">Try it</button>
<p><strong>Note:</strong> Internet Explorer 8 and earlier does not support the characterSet property.</p>
<p id="demo"></p>
<script>
function myFunction() {
var x = document.characterSet;
console.assert(x === 'utf-8', 'Usually utf-8');
}
console.error('document.characterSet');
myFunction();
console.exit(0);
</script>
</body>
</html>