Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/rendering/widgets/input-text-overflow-ellipsis-scrolled.html - WPT Dashboard Interop Dashboard
<!doctype html>
<meta charset="utf-8">
<title>text-overflow: ellipsis has no effect on input when scrolled</title>
<link rel="match" href="input-text-overflow-ellipsis-scrolled-ref.html">
<style>
input {
text-overflow: ellipsis;
}
</style>
<input value="something very very very very long">
<script>
document.querySelector("input").scrollLeft = 10;
</script>