| <script src="../../resources/js-test.js"></script> |
| margin-top: 1000px; /* Position outside the viewport so that we would have to scroll to see this element. */ |
| <div id="test-container"> |
| <p id="text">If you see this text then the test FAILed.</p> |
| <input type="text" id="text-field" placeholder="placeholder"> |
| function handleSelectionChange() { |
| // Trigger a re-layout of the text field. |
| document.getElementById("text-field").style.width = "20px"; |
| // Use a zero timer to allow for a scroll to happen, if it were to happen. (We do not expect a scroll to happen). |
| window.setTimeout(() => { |
| shouldBeZero("window.scrollY"); |
| document.body.removeChild(document.getElementById("test-container")); |
| window.jsTestIsAsync = true; |
| description("Tests that the page is not scrolled to the current selection when an unfocused text field is laid out."); |
| document.addEventListener("selectionchange", handleSelectionChange, { once: true }); |
| let text = document.getElementById("text"); |
| window.getSelection().setBaseAndExtent(text.firstChild, 0, text.firstChild, 0); |