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 body { color: black; } | 4 body { color: black; } |
5 .match+div div+div { color: green; } | 5 .match+div div+div { color: green; } |
6 </style> | 6 </style> |
7 <div> | 7 <div> |
8 <div id="top"></div> | 8 <div id="top"></div> |
9 <div> | 9 <div> |
10 <div></div> | 10 <div></div> |
(...skipping 11 matching lines...) Expand all Loading... |
22 testRunner.dumpAsText(); | 22 testRunner.dumpAsText(); |
23 | 23 |
24 description("Check that we don't do unnecessary style recalcs for sibling trees.
"); | 24 description("Check that we don't do unnecessary style recalcs for sibling trees.
"); |
25 | 25 |
26 if (window.internals) | 26 if (window.internals) |
27 internals.updateStyleAndReturnAffectedElementCount(); | 27 internals.updateStyleAndReturnAffectedElementCount(); |
28 | 28 |
29 document.getElementById("top").className = "match"; | 29 document.getElementById("top").className = "match"; |
30 | 30 |
31 if (window.internals) | 31 if (window.internals) |
32 shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "4"); | 32 shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "2"); |
33 | 33 |
34 shouldBe("getComputedStyle(document.getElementById('green'), null).color", "'rgb
(0, 128, 0)'"); | 34 shouldBe("getComputedStyle(document.getElementById('green'), null).color", "'rgb
(0, 128, 0)'"); |
35 | 35 |
36 successfullyParsed = true; | 36 successfullyParsed = true; |
37 </script> | 37 </script> |
OLD | NEW |