| <script src="../../resources/ui-helper.js"></script> |
| <div id="manual-instructions" class="hidden"> |
| <p>Tests that a text-overflow box is scrollable. To run by hand, perform the following:</p> |
| <li>Click anywhere in the green box (below) to focus it.</li> |
| <li>Press the down arrow on the keyboard.</li> |
| <p>This test PASSED if you see a solid green square. Otherwise, it FAILED.</p> |
| <div id="ellipsizedText" contenteditable="true">abcde</div> |
| document.getElementById("ellipsizedText").blur(); // To avoid painting the caret. |
| function scrollToEndOfLine() { |
| return UIHelper.keyDown("downArrow"); |
| UIHelper.activateAndWaitForInputSessionAt(0, 0).then(scrollToEndOfLine); |
| document.getElementById("ellipsizedText").addEventListener("scroll", done, {once: true}); |
| document.getElementById("manual-instructions").classList.remove("hidden"); // Show manual instructions |
| testRunner.waitUntilDone(); |