mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 07:27:45 +00:00
LibWeb: Add textarea placeholder
This commit is contained in:
parent
091faf1aae
commit
52397d01bd
6 changed files with 85 additions and 33 deletions
|
@ -1,9 +1,11 @@
|
|||
<!doctype html>
|
||||
<body>
|
||||
<!DOCTYPE html><html><head><style>
|
||||
* {
|
||||
font: 20px 'SerenitySans';
|
||||
}
|
||||
</style></head><body>
|
||||
<textarea>Bonjour mon amis!</textarea>
|
||||
<script>
|
||||
const textarea = document.createElement("textarea");
|
||||
textarea.innerText = "Well hello friends!";
|
||||
document.body.appendChild(textarea);
|
||||
</script>
|
||||
</body>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue