blob: af0c0793ee1ca73b2eff5d5054c4bf2c52e27c61 [file] [log] [blame]
<!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>