summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/forms/the-textarea-element/placeholder-white-space.tentative.html
blob: 7af55643fb4bfe491f67c94fce84f79ab230d4d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!doctype html>
<meta charset=utf-8>
<title>Textarea placeholder honors textarea's text-overflow</title>
<link rel=author href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
<link rel=author href="https://mozilla.com" title="Mozilla">
<link rel=mismatch href="placeholder-white-space-notref.html">
<link rel=help href="https://github.com/w3c/csswg-drafts/issues/6669">
<style>
  textarea {
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 100px;
  }
</style>
<textarea placeholder="This is a really long string that needs to be truncated"></textarea>