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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css/invalidation/recalc-direct-adjacent-001.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 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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698