chromium/third_party/blink/web_tests/external/wpt/css/css-text/white-space/reference/white-space-vs-joiners-001-ref.html

<!DOCTYPE html>
<meta charset=utf-8>

<title>CSS Text reference</title>
<link rel="author" title="Jonathan Kew" href="mailto:[email protected]">

<style>
p {
  width: fit-content;
  border: 2px solid green;
  font: 24px monospace;
}
</style>

<body>
</body>

<script>
for (i = 0x200b; i <= 0x200f; ++i) {
  txt = "This should have no leading or trailing ["
    + i.toString(16)
    + "]";
  p = document.createElement("p");
  p.textContent = txt;
  document.body.appendChild(p);
}
</script>