summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/dom/nodes/moveBefore/tentative/css-transition-cross-document.html
blob: f3c8fafbfa8c5b002ba309e3333a57536473d266 (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
40
41
42
43
44
45
<!DOCTYPE html>
<title>Node.moveBefore should not preserve CSS transition state when crossing document boundaries</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>

<body>
  <iframe id="iframe">
  </iframe>
  <section id="new-parent">
  </section>
  <style id="style">
    #item {
      width: 100px;
      height: 100px;
      background: green;
      transition: left 10s;
      position: absolute;
      left: 0;
    }

    section {
      position: relative;
    }

    body {
      margin-left: 0;
    }
  </style>
  <script>
    promise_test(async t => {
      const iframe = document.querySelector("#iframe");
      const style = document.querySelector("#style");
      iframe.contentDocument.head.append(style.cloneNode(true));
      const item = iframe.contentDocument.createElement("div");
      item.id = "item";
      iframe.contentDocument.body.append(item);
      assert_equals(item.getBoundingClientRect().x, 0);
      item.style.left = "400px";
      await new Promise(resolve => item.addEventListener("transitionstart", resolve));
      document.querySelector("#new-parent").moveBefore(item, null);
      await new Promise(resolve => requestAnimationFrame(() => resolve()));
      assert_greater_than(item.getBoundingClientRect().x, 399);
    }, "Moving a transition across documents should reset its state");
  </script>
</body>