mirror of
https://github.com/servo/servo.git
synced 2025-06-25 17:44:33 +01:00
10 lines
355 B
HTML
10 lines
355 B
HTML
<!doctype html>
|
|
<title>Dynamic placeholder attribute changes after addition shouldn't crash</title>
|
|
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1662483">
|
|
<input type="text">
|
|
<script>
|
|
let input = document.querySelector("input");
|
|
input.getBoundingClientRect();
|
|
input.placeholder = "Foo";
|
|
input.placeholder = "Bar";
|
|
</script>
|