OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <script src="../../../resources/js-test.js"></script> | 2 <script src="../../../resources/js-test.js"></script> |
3 <style> | 3 <style> |
4 .c5 > .c4 ~ .c3 .c2 + .c1 { background-color: green } | 4 .c5 > .c4 ~ .c3 .c2 + .c1 { background-color: green } |
5 </style> | 5 </style> |
6 <!-- | 6 <!-- |
7 Expected sets | 7 Expected sets |
8 | 8 |
9 .c1 { } | 9 .c1 { } |
10 .c2 { subtree } | 10 .c2 + { .c1 } |
11 .c3 { c1 } | 11 .c3 { .c1 } |
12 .c4 { subtree } | 12 .c4 ~ { .c3 } { .c1 } |
13 .c5 { c1 } | 13 .c5 { .c1 } |
14 | 14 |
15 --> | 15 --> |
16 <div id="i5"> | 16 <div id="i5"> |
17 <div id="i4"></div> | 17 <div id="i4"></div> |
18 <div></div> | 18 <div></div> |
19 <div></div> | 19 <div></div> |
20 <div></div> | 20 <div></div> |
21 <div id="i3"> | 21 <div id="i3"> |
22 <div> | 22 <div> |
23 <div id="i2"></div> | 23 <div id="i2"></div> |
(...skipping 25 matching lines...) Expand all Loading... |
49 shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "1"); | 49 shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "1"); |
50 | 50 |
51 document.body.offsetTop; // Force style recalc. | 51 document.body.offsetTop; // Force style recalc. |
52 i2.className = "c2"; | 52 i2.className = "c2"; |
53 if (window.internals) | 53 if (window.internals) |
54 shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "1"); | 54 shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "1"); |
55 | 55 |
56 document.body.offsetTop; // Force style recalc. | 56 document.body.offsetTop; // Force style recalc. |
57 i3.className = "c3"; | 57 i3.className = "c3"; |
58 if (window.internals) | 58 if (window.internals) |
59 shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "2"); | 59 shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "1"); |
60 | 60 |
61 document.body.offsetTop; // Force style recalc. | 61 document.body.offsetTop; // Force style recalc. |
62 i4.className = "c4"; | 62 i4.className = "c4"; |
63 if (window.internals) | 63 if (window.internals) |
64 shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "1"); | 64 shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "1"); |
65 | 65 |
66 shouldBe("getComputedStyle(i1, null).backgroundColor", "transparent"); | 66 shouldBe("getComputedStyle(i1, null).backgroundColor", "transparent"); |
67 | 67 |
68 document.body.offsetLeft; // force style recalc. | 68 document.body.offsetLeft; // force style recalc. |
69 i5.className = "c5"; | 69 i5.className = "c5"; |
70 if (window.internals) | 70 if (window.internals) |
71 shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "1"); | 71 shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "1"); |
72 | 72 |
73 shouldBe("getComputedStyle(i1, null).backgroundColor", "green"); | 73 shouldBe("getComputedStyle(i1, null).backgroundColor", "green"); |
74 | 74 |
75 </script> | 75 </script> |
OLD | NEW |