2 <script src=
"../../resources/js-test.js"></script>
4 #empty:not(:empty) + div { background-color: green; }
7 <div id=
"sibling">This text should be green
</div>
9 description("Check that the sibling of an element that becomes :not(:empty) is properly recalculated");
11 var transparent
= "rgba(0, 0, 0, 0)";
12 var green
= "rgb(0, 128, 0)";
14 empty
.offsetTop
; // force recalc
15 empty
.style
.color
= "red"; // force LocalStyleChange on #empty
16 empty
.offsetTop
; // force recalc
18 shouldBe("getComputedStyle(sibling, '').backgroundColor", "transparent");
20 empty
.appendChild(document
.createElement("div"));
21 empty
.offsetTop
; // force recalc
23 shouldBe("getComputedStyle(sibling, '').backgroundColor", "green");