Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-overflow/text-overflow-string-in-textarea-multiline.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>text-overflow: <string> in a multi-line textarea</title>
<link rel="author" title="Minseong Kim" href="jja08111@gmail.com">
<link rel="mismatch" href="text-overflow-string-in-textarea-multiline-notref.html">
<meta name="assert" content="In a textarea with several lines, a line that overflows in the inline direction is truncated with the text-overflow string.">
<style>
textarea {
text-overflow: "[...]";
}
</style>
<textarea wrap="off" rows="4">aa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aa</textarea>