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

Side by Side Diff: LayoutTests/fast/css/invalidation/targeted-class-id.html

Issue 224593002: Use invalidation sets when selector contains adjacent combinators. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased with modified expected test results. Created 6 years, 8 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 | Annotate | Revision Log
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 .a1 #b1 { background-color: green } 4 .a1 #b1 { background-color: green }
5 .a2 div + #b2 { background-color: green } 5 .a2 div + #b2 { background-color: green }
6 </style> 6 </style>
7 <div id="t1"> 7 <div id="t1">
8 <div></div> 8 <div></div>
9 <div id="b1"></div> 9 <div id="b1"></div>
10 </div> 10 </div>
(...skipping 17 matching lines...) Expand all
28 28
29 document.getElementById("t1").className = "a1"; 29 document.getElementById("t1").className = "a1";
30 if (window.internals) 30 if (window.internals)
31 shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "2"); 31 shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "2");
32 shouldBe("getComputedStyle(b1, null).backgroundColor", "green"); 32 shouldBe("getComputedStyle(b1, null).backgroundColor", "green");
33 33
34 document.body.offsetLeft; // force style recalc. 34 document.body.offsetLeft; // force style recalc.
35 35
36 document.getElementById("t2").className = "a2"; 36 document.getElementById("t2").className = "a2";
37 if (window.internals) 37 if (window.internals)
38 shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "3"); 38 shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "2");
39 shouldBe("getComputedStyle(b2, null).backgroundColor", "green"); 39 shouldBe("getComputedStyle(b2, null).backgroundColor", "green");
40 40
41 </script> 41 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698