summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-break/hit-test-hidden-overflow.html
blob: ec766e0948470e06f2e7f4f24ed7b1e694a5c5fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!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=1330515">
<style>
  body { margin: 0; }
</style>
<div id="first" style="margin-top:20px; height:20px;">
  <div style="overflow:hidden; width:500px; margin-left:-100px; height:0;">
    <div style="columns:2; gap:0; width:200%;">
      <div style="position:relative; margin-left:-100%; height:800px;"></div>
    </div>
  </div>
</div>
<div id="second" style="height:20px;"></div>
<div id="log" style="margin-top:200px;"></div>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
  test(()=> { assert_equals(document.elementFromPoint(50, 10), document.documentElement); }, "above first block");
  test(()=> { assert_equals(document.elementFromPoint(50, 30), first); }, "first block");
  test(()=> { assert_equals(document.elementFromPoint(50, 50), second); }, "second block");
  test(()=> { assert_equals(document.elementFromPoint(50, 70), document.documentElement); }, "below first block");
</script>