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

Side by Side Diff: LayoutTests/fast/dynamic/last-child-descendant.html

Issue 758523002: Store :last/first-child state as restyle flags. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed assert Created 6 years 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
(Empty)
1 <!DOCTYPE html>
2 <script src="../../resources/js-test.js"></script>
3 <style>
4 #b { color: green; }
5 #a:last-child #b { color: red }
6 </style>
7 <div id="t">
8 <div id="a">
9 <div id="b">This text should be green</div>
10 </div>
11 </div>
12 <script>
13 description("Evaluation of :last-child affecting descendant.");
14
15 t.offsetTop;
16 a.style.backgroundColor = "white";
17 t.offsetTop;
18 t.insertBefore(document.createElement("div"), null);
19
20 var green = "rgb(0, 128, 0)";
21
22 shouldBe("getComputedStyle(b).color", "green");
23 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698