wpt / svg / crashtests / chrome-bug-333487749.html

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

/svg/crashtests/chrome-bug-333487749.html

<!doctype html>
<body style="mask: url(#marker)">
  <svg>
    <marker id="marker">
      <rect width="10" height="10" fill="yellow"/>
    </marker>
    <path d="M50,50h100" marker-start="url(#marker1)"/>
  </svg>
</body>
<script>
  document.documentElement.offsetTop;
  document.documentElement.style.display = 'none';
  document.documentElement.offsetTop;
</script>