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

[test] innerText is not supported yet

This commit is contained in:
Witold Filipczyk 2023-04-04 14:47:30 +02:00
parent 431e3caf2d
commit cb8f7c8423

View File

@ -11,7 +11,7 @@
<script>
function myFunction() {
var x = "Width: " + screen.width + "px";
document.getElementById("demo").innerText = x;
document.getElementById("demo").innerHTML = x;
}
</script>