summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-transitions/inherit-height-transition.html
blob: e411da33961b1a940b5ec7dcfa2994b0b9df4e4f (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
<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/css-transitions/#starting">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
  div { height: inherit; }
  #outer { height: 50px; }
  #outer.collapsed {
    height: 0px;
    transition: height 0.01s;
  }
</style>
<div id="outer">
  <div>
    <div id="inner">You should only see a flash of red.</div>
  </div>
</div>
<script>
  promise_test(t => {
    outer.offsetTop;
    outer.className = "collapsed";
    return (new Promise((resolve) => outer.addEventListener("transitionend", resolve))).then(() => {
      assert_equals(getComputedStyle(inner).height, "0px");
    });
  }, "Transitioned height, explicitly inherited down two DOM levels, should inherit correctly");
</script>