Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-pseudo/placeholder-input-dynamic-crash.html - WPT Dashboard Interop Dashboard
<!doctype html>
<title>Dynamic placeholder attribute changes after addition shouldn't crash</title>
<input type="text">
<script>
let input = document.querySelector("input");
input.getBoundingClientRect();
input.placeholder = "Foo";
input.placeholder = "Bar";
</script>