1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-27 01:25:34 +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> <script>
function myFunction() { function myFunction() {
var x = "Width: " + screen.width + "px"; var x = "Width: " + screen.width + "px";
document.getElementById("demo").innerText = x; document.getElementById("demo").innerHTML = x;
} }
</script> </script>