Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/semantics/forms/the-input-element/placeholder-update.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<link rel="match" href="placeholder-update-ref.html">
<body>
<div id="app"></div>
<script>
const rootElement = document.getElementById("app");
const input = document.createElement("input");
input.placeholder = "placeholder";
input.value = "content";
rootElement.appendChild(input);
</script>
</body>
</html>