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

Side by Side Diff: LayoutTests/fast/css/invalidation/class-sibling-universal.html

Issue 365063005: Invalidation set features recognized left of adjacent. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Added more tests Created 6 years, 5 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
« no previous file with comments | « no previous file | Source/core/css/RuleFeature.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script src="../../../resources/testharness.js"></script>
3 <script src="../../../resources/testharnessreport.js"></script>
4 <style>
5 .t1 .sibling + *,
chrishtr 2014/07/12 00:11:59 Please add one more test like what Elliott suggest
rune 2014/08/04 20:17:14 Done.
6 .t2 .sibling ~ *,
7 .t3 .sibling + :hover { background-color: rgb(0, 128, 0); }
8
9 #r3 { width: 10px; height: 10px }
10 </style>
11 <div id="t1">
12 <div class="sibling"></div>
13 <div id="r1"></div>
14 </div>
15 <div id="t2">
16 <div class="sibling"></div>
17 <div></div>
18 <div id="r2"></div>
19 </div>
20 <div id="t3">
21 <div class="sibling"></div>
22 <div id="r3"></div>
23 </div>
24 <script>
25 document.body.offsetTop;
26
27 test(function() {
28 assert_true(!!window.internals, "This test only works with internals exposed present");
29 assert_equals(getComputedStyle(r1).backgroundColor, "rgba(0, 0, 0, 0)", "Bac kground color should initially be transparent");
30
31 t1.className = "t1";
32 assert_equals(internals.updateStyleAndReturnAffectedElementCount(), 3, "Subt ree style recalc");
33 assert_equals(getComputedStyle(r1).backgroundColor, "rgb(0, 128, 0)", "Backg round color is green after class change");
34 }, "Adjacent with universal selector");
35
36 test(function() {
37 assert_true(!!window.internals, "This test only works with internals exposed present");
38 assert_equals(getComputedStyle(r2).backgroundColor, "rgba(0, 0, 0, 0)", "Bac kground color should initially be transparent");
39
40 t2.className = "t2";
41 assert_equals(internals.updateStyleAndReturnAffectedElementCount(), 4, "Subt ree style recalc");
42 assert_equals(getComputedStyle(r2).backgroundColor, "rgb(0, 128, 0)", "Backg round color is green after class change");
43 }, "Indirect adjacent with universal selector");
44
45 test(function() {
46 assert_true(!!window.internals, "This test only works with internals exposed present");
47 assert_true(!!window.eventSender, "This test only works with eventSender pre sent");
48
49 eventSender.mouseMoveTo(r3.offsetLeft + 1, r3.offsetTop + 1);
50 assert_equals(getComputedStyle(r3).backgroundColor, "rgba(0, 0, 0, 0)", "Bac kground color should initially be transparent");
51
52 t3.className = "t3";
53 assert_equals(internals.updateStyleAndReturnAffectedElementCount(), 3, "Subt ree style recalc");
54 assert_equals(getComputedStyle(r3).backgroundColor, "rgb(0, 128, 0)", "Backg round color is green after class change");
55 }, "Adjacent with universal :hover selector");
56 </script>
OLDNEW
« no previous file with comments | « no previous file | Source/core/css/RuleFeature.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698