wpt / css / css-pseudo / crashtests / chrome-536997542-crash.html

Status: PASS | Duration: 9ms | Subtests: 1/1 | Open test on wpt.live | wpt.fyi

/css/css-pseudo/crashtests/chrome-536997542-crash.html

<!DOCTYPE html>
<head>
<link rel="help" href="https://crbug.com/536997542">
</head>
X<span id="sp">
<style>
  head, html, body, span {
    display: inline-block
  }
  html::first-letter, span::first-letter {
    color: pink;
  }
  span {
    container-type: inline-size;
    float: right;
  }
</style>
<script>
  document.body.offsetHeight;
  document.head.style.display = "none";
  document.body.style.display = "block";
  sp.style.display = "inline";
  document.body.offsetTop;
</script>