summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/forms/the-input-element/placeholder-update.html
blob: af0c0793ee1ca73b2eff5d5054c4bf2c52e27c61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!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>