зеркало из https://github.com/mozilla/pjs.git
11 строки
272 B
HTML
11 строки
272 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<body>
|
||
|
<textarea id="t"></textarea>
|
||
|
<script>
|
||
|
document.getElementById("t").appendChild(document.createTextNode("abcd"));
|
||
|
document.getElementById("t").appendChild(document.createTextNode("efgh"));
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|