wpt / css / CSS2 / floats / crashtests / float-dynamic-change-1.html

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

/css/CSS2/floats/crashtests/float-dynamic-change-1.html

<!DOCTYPE html>
<link rel="help" href="https://crbug.com/470462685">
<div id="target" style="float: left;">
  <select></select>
</div>
<script>
document.body.offsetTop;
target.style.float = 'initial';
target.style.overflow = 'hidden';
</script>