chromium/third_party/blink/web_tests/external/wpt/css/css-text/white-space/reference/textarea-pre-wrap-001-ref.html

<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Text level 3 Test reference file</title>
<link rel="author" title="Florian Rivoal" href="http://florian.rivoal.net/">
<!-- pre-wrap-001-ref.html could probably be used instead,
but since textarea is a form control that's not fully specified,
using a separate reference just in case something is indeed different
is safer. -->
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style>
textarea {
  word-wrap: initial; /*deprecated alias*/
  overflow-wrap: initial;
  line-break: initial;
  word-break: initial;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  resize: none;
  overflow: hidden; /* I don't want scrollbars, and overflow:visible isn't typically supported on textarea */

  font-size: 20px;
  font-family: Ahem;
  line-height: 1em;
  color: green;
  white-space: pre;
}
</style>
<body>
  <p>Test passes if there is a <strong>filled green square</strong> and <strong>no red</strong>.</p>
  <textarea>XX
XX</textarea>
</body>