summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/floats/hit-test-floats-004.html
blob: 1bed4c464d26a6a3bc9443947c91f0ab18beaa74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<link rel="help" href="https://www.w3.org/TR/CSS22/visuren.html#floats">
<link rel="help" href="https://www.w3.org/TR/CSS22/zindex.html">
<div id="error" style="overflow:hidden; width:100px; height:100px;"></div>
<div style="margin-top:-100px; overflow:hidden; width:100px; height:100px;">
  <div id="target" style="float:left; width:100px; height:100px;"></div>
</div>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
  test(()=> {
      var elm = document.elementFromPoint(50, 50);
      assert_equals(elm.id, "target");
  }, "Miss float below something else");
</script>