summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/cssom-view/range-bounding-client-rect-with-display-contents.html
blob: 501a94e07fabc014dc0417d59d406bb6c7ed917a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<meta charset="utf-8">
<title>Include display:contents elements recursively when calculating bounding rect for a ranges</title>
<link rel="help" href="https://drafts.csswg.org/cssom-view-1/#dom-range-getboundingclientrect">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="container">
  <div id="spacerBefore">spacer before</div>
  <div style="display:contents">
    <div style="height:30px; background:lightblue">
      HEIGHT: 30px
    </div>
    <div style="display:contents">
      <div style="display:contents">
        <div style="height:30px; background:lightblue">
          HEIGHT: 30px
        </div>
      </div>
    </div>
  </div>
  <div id="spacerAfter">spacer after</div>
</div>
<script>
  test(function () {
    const spacerBefore = document.getElementById("spacerBefore");
    const spacerAfter = document.getElementById("spacerAfter");

    const expected = spacerAfter.getBoundingClientRect().top - spacerBefore.getBoundingClientRect().bottom;

    const rangeBetweenSpacers = document.createRange();
    rangeBetweenSpacers.setStartAfter(spacerBefore);
    rangeBetweenSpacers.setEndBefore(spacerAfter);

    const actual = rangeBetweenSpacers.getBoundingClientRect().height;

    assert_true(actual > 0, "range has vertical height");
    assert_equals(expected, actual, "range.getBoundingClientRect().height");
  }, "the space between elements using a range should be the same as using another method")
</script>