chromium/third_party/blink/web_tests/external/wpt/css/css-writing-modes/crashtests/table-root-direction-propagation-crash.html

<!doctype html>
<link rel="help" href="https://crbug.com/1303287">
<style>
  html {
    display: table;
    border-right: solid;
  }
  head { display: inline; }
  body { direction: rtl; }
</style>
<body></body>
<script>
  requestAnimationFrame(() => requestAnimationFrame(() => document.body.remove()));
</script>