summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/mozilla/tests/css/css-contain/content-visibility-hidden-document-reflow-count.html
blob: 69c1c4b7ddcf175dc86e3960e9dfeb76992c3dd7 (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
<!DOCTYPE html>
<html>
  <meta charset="utf-8">
  <title>CSS Contain: Test content-visibility:hidden reflow counts</title>
  <link rel="author" title="Martin Robinson" href="mailto:mrobinson@igalia.com">

  <script src="/resources/testharness.js"></script>
  <script src="/resources/testharnessreport.js"></script>

  <body style="content-visibility: hidden;">
    hello
  </body>

  <script>
  let gUtils = SpecialPowers.getDOMWindowUtils(window);
  let gTestContainer = document.getElementById("test");

  function flushLayout() {
    document.documentElement.offsetHeight;
  }

  function getReflowCount() {
    flushLayout();
    return gUtils.framesReflowed;
  }

  function runTestFunctionAndCountReflows(testFunction) {
    const beforeCount = getReflowCount();
    testFunction();
    const afterCount = getReflowCount();
    console.log(afterCount - beforeCount);
    return afterCount - beforeCount;
  }

  test(() => {
    flushLayout();

    const reflows = runTestFunctionAndCountReflows(() => {
      document.body.innerText = "something else";
    });
    assert_equals(reflows, 1, "Reflow only triggered on body.");
  }, "Changing text of 'content-visibility: hidden' body only triggers a single reflow.");
  </script>
</html>