chromium/third_party/blink/web_tests/external/wpt/css/css-text/white-space/nowrap-wbr-and-space-crash.html

<!DOCTYPE html>
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=950209">
<link rel="author" title="Koji Ishii" href="[email protected]">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
div {
  white-space: nowrap;
  width: 3ch;
}
</style>
<body>
  <div>12345<wbr> 678</div>
<script>
test(() => {
  document.body.offsetTop;
});
</script>
</body>