summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-inline/float-becomes-inflow-crash.html
blob: c820b093ce332abc2bce9c58456cb67fe268f637 (plain)
1
2
3
4
5
6
7
8
9
10
11
<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1331189">
<div id="elm" style="float:left;"></div>
x
<script>
  document.body.offsetTop;
  elm.style.cssFloat = "none";
  getComputedStyle(elm).cssFloat;
  elm.style.display = "none";
</script>