Index: LayoutTests/fast/css/invalidation/class-sibling-universal.html |
diff --git a/LayoutTests/fast/css/invalidation/class-sibling-universal.html b/LayoutTests/fast/css/invalidation/class-sibling-universal.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..1fb6b2766053f676cfa0c62b38f020ebde63ae2c |
--- /dev/null |
+++ b/LayoutTests/fast/css/invalidation/class-sibling-universal.html |
@@ -0,0 +1,56 @@ |
+<!DOCTYPE html> |
+<script src="../../../resources/testharness.js"></script> |
+<script src="../../../resources/testharnessreport.js"></script> |
+<style> |
+.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.
|
+.t2 .sibling ~ *, |
+.t3 .sibling + :hover { background-color: rgb(0, 128, 0); } |
+ |
+#r3 { width: 10px; height: 10px } |
+</style> |
+<div id="t1"> |
+ <div class="sibling"></div> |
+ <div id="r1"></div> |
+</div> |
+<div id="t2"> |
+ <div class="sibling"></div> |
+ <div></div> |
+ <div id="r2"></div> |
+</div> |
+<div id="t3"> |
+ <div class="sibling"></div> |
+ <div id="r3"></div> |
+</div> |
+<script> |
+document.body.offsetTop; |
+ |
+test(function() { |
+ assert_true(!!window.internals, "This test only works with internals exposed present"); |
+ assert_equals(getComputedStyle(r1).backgroundColor, "rgba(0, 0, 0, 0)", "Background color should initially be transparent"); |
+ |
+ t1.className = "t1"; |
+ assert_equals(internals.updateStyleAndReturnAffectedElementCount(), 3, "Subtree style recalc"); |
+ assert_equals(getComputedStyle(r1).backgroundColor, "rgb(0, 128, 0)", "Background color is green after class change"); |
+}, "Adjacent with universal selector"); |
+ |
+test(function() { |
+ assert_true(!!window.internals, "This test only works with internals exposed present"); |
+ assert_equals(getComputedStyle(r2).backgroundColor, "rgba(0, 0, 0, 0)", "Background color should initially be transparent"); |
+ |
+ t2.className = "t2"; |
+ assert_equals(internals.updateStyleAndReturnAffectedElementCount(), 4, "Subtree style recalc"); |
+ assert_equals(getComputedStyle(r2).backgroundColor, "rgb(0, 128, 0)", "Background color is green after class change"); |
+}, "Indirect adjacent with universal selector"); |
+ |
+test(function() { |
+ assert_true(!!window.internals, "This test only works with internals exposed present"); |
+ assert_true(!!window.eventSender, "This test only works with eventSender present"); |
+ |
+ eventSender.mouseMoveTo(r3.offsetLeft + 1, r3.offsetTop + 1); |
+ assert_equals(getComputedStyle(r3).backgroundColor, "rgba(0, 0, 0, 0)", "Background color should initially be transparent"); |
+ |
+ t3.className = "t3"; |
+ assert_equals(internals.updateStyleAndReturnAffectedElementCount(), 3, "Subtree style recalc"); |
+ assert_equals(getComputedStyle(r3).backgroundColor, "rgb(0, 128, 0)", "Background color is green after class change"); |
+}, "Adjacent with universal :hover selector"); |
+</script> |