summaryrefslogtreecommitdiffstats
path: root/layout/style/test/test_invalidation_basic.html
blob: b5a692840574f1bf291c74ca6f3ac04432df593d (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>
<meta charset="utf-8">
<title>
  Test for bug 1368240: We only invalidate style as little as needed
</title>
<link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<style>
.foo .bar {
  color: red;
}
#container ~ .bar {
  color: green;
}
</style>
<div id="container">
  <div></div>
  <div></div>
  <div></div>
</div>
<div></div>
<div></div>
<script>
SimpleTest.waitForExplicitFinish();
const utils = SpecialPowers.getDOMWindowUtils(window);

// TODO(emilio): Add an API to get the ComputedStyles we've recreated, to make
// more elaborated tests.
document.documentElement.offsetTop;
const initialRestyleGeneration = utils.restyleGeneration;

// Normally we'd restyle the whole subtree in this case, but we should go down
// the tree invalidating as little as needed (nothing in this case).
container.classList.add("foo");
document.documentElement.offsetTop;
is(utils.restyleGeneration, initialRestyleGeneration,
   "Shouldn't have restyled any descendant");

container.setAttribute("id", "");
document.documentElement.offsetTop;
is(utils.restyleGeneration, initialRestyleGeneration,
   "Shouldn't have restyled any sibling");

SimpleTest.finish();
</script>