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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css/invalidation/recalc-direct-adjacent-002.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 + .sibling div+div { color: green; } 5 .match + .sibling div+div { color: green; }
6 </style> 6 </style>
7 <div> 7 <div>
8 <div id="top"></div> 8 <div id="top"></div>
9 <div class="sibling"> 9 <div class="sibling">
10 <div></div> 10 <div></div>
11 <div id="green"></div> 11 <div id="green"></div>
12 </div> 12 </div>
13 <div> 13 <div>
14 <div></div> 14 <div></div>
15 </div> 15 </div>
16 </div> 16 </div>
17 <script> 17 <script>
18 if (window.testRunner) 18 if (window.testRunner)
19 testRunner.dumpAsText(); 19 testRunner.dumpAsText();
20 20
21 description("Check that we don't do unnecessary style recalcs for sibling trees. "); 21 description("Check that we don't do unnecessary style recalcs for sibling trees. ");
22 22
23 if (window.internals) 23 if (window.internals)
24 internals.updateStyleAndReturnAffectedElementCount(); 24 internals.updateStyleAndReturnAffectedElementCount();
25 25
26 document.getElementById("top").className = "match"; 26 document.getElementById("top").className = "match";
27 27
28 if (window.internals) 28 if (window.internals)
29 shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "4"); 29 shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "2");
30 30
31 shouldBe("getComputedStyle(document.getElementById('green'), null).color", "'rgb (0, 128, 0)'"); 31 shouldBe("getComputedStyle(document.getElementById('green'), null).color", "'rgb (0, 128, 0)'");
32 32
33 successfullyParsed = true; 33 successfullyParsed = true;
34 </script> 34 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698