summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/layout-instability/body-display-change.html
blob: 0576bd6865084fac5d8c5ccc24285709d50f587e (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
46
47
48
49
50
51
<!DOCTYPE html>
<title>Layout Instability: shift accompanied by body display change</title>
<link rel="help" href="https://wicg.github.io/layout-instability/" />
<style>

body { margin: 0; }
#cont {
  background: white;
  width: 300px;
  height: 200px;
}
#ch {
  background: blue;
  position: relative;
  width: 300px;
  height: 100px;
  top: 100px;
}

</style>
<style id="s"></style>
<div id="cont">
  <div id="ch"></div>
</div>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="resources/util.js"></script>
<script>

promise_test(async () => {
  const watcher = new ScoreWatcher;
  await waitForAnimationFrames(2);

  document.querySelector("#s").innerHTML = `
      body {
        display: flex;
        flex-direction: column;
      }
      #ch { top: 0; }
  `;

  // An element of size (300 x 100) has shifted by 100px.
  const expectedScore = computeExpectedScore(300 * (100 + 100), 100);

  // Observer fires after the frame is painted.
  assert_equals(watcher.score, 0);
  await watcher.promise;
  assert_equals(watcher.score, expectedScore);
}, 'Shift accompanied by body display change.');

</script>