Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(418)

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css/invalidation/targeted-class-any-pseudo.html

Issue 1317533002: Sibling invalidation sets (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Oilpan Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 :-webkit-any(.a1) { background-color: green } 4 :-webkit-any(.a1) { background-color: green }
5 .a2 :-webkit-any(.b2) { background-color: green } 5 .a2 :-webkit-any(.b2) { background-color: green }
6 .a3 :-webkit-any(.b3, .c3) { background-color: green } 6 .a3 :-webkit-any(.b3, .c3) { background-color: green }
7 .a4 :-webkit-any(:not(.b4), .c4) { background-color: green } 7 .a4 :-webkit-any(:not(.b4), .c4) { background-color: green }
8 :-webkit-any(.a5, .b5) ~ .c5 .d5 { background-color: green } 8 :-webkit-any(.a5, .b5) ~ .c5 .d5 { background-color: green }
9 9
10 </style> 10 </style>
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "5"); 90 shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "5");
91 shouldBe("getComputedStyle(spans4[0], null).backgroundColor", "green"); 91 shouldBe("getComputedStyle(spans4[0], null).backgroundColor", "green");
92 shouldBe("getComputedStyle(spans4[1], null).backgroundColor", "transparent"); 92 shouldBe("getComputedStyle(spans4[1], null).backgroundColor", "transparent");
93 shouldBe("getComputedStyle(spans4[2], null).backgroundColor", "transparent"); 93 shouldBe("getComputedStyle(spans4[2], null).backgroundColor", "transparent");
94 shouldBe("getComputedStyle(spans4[3], null).backgroundColor", "green"); 94 shouldBe("getComputedStyle(spans4[3], null).backgroundColor", "green");
95 95
96 document.body.offsetLeft; // force style recalc. 96 document.body.offsetLeft; // force style recalc.
97 97
98 document.getElementById("t5").className = "a5"; 98 document.getElementById("t5").className = "a5";
99 if (window.internals) 99 if (window.internals)
100 shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "3"); 100 shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "1");
101 shouldBe("getComputedStyle(d5, null).backgroundColor", "green"); 101 shouldBe("getComputedStyle(d5, null).backgroundColor", "green");
102 </script> 102 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698