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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/invalidation/compound.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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/css/invalidation/compound.html
diff --git a/third_party/WebKit/LayoutTests/fast/css/invalidation/compound.html b/third_party/WebKit/LayoutTests/fast/css/invalidation/compound.html
index c049b98ecb90f98f8d467ff7645c770225c0140b..2039dc023d7edbf142563bf865a3dc402d45e511 100644
--- a/third_party/WebKit/LayoutTests/fast/css/invalidation/compound.html
+++ b/third_party/WebKit/LayoutTests/fast/css/invalidation/compound.html
@@ -172,7 +172,7 @@ test(function() {
assert_equals(getComputedStyle(r6).backgroundColor, "rgba(0, 0, 0, 0)", "Background color should initially be transparent");
t6.className = "t6";
- assert_equals(internals.updateStyleAndReturnAffectedElementCount(), 6, "Subtree style recalc");
+ assert_equals(internals.updateStyleAndReturnAffectedElementCount(), 4, "Subtree style recalc");
assert_equals(getComputedStyle(r6).backgroundColor, "rgb(0, 128, 0)", "Background color is green after class change");
}, "Sibling with compound descendant containing id");
@@ -180,7 +180,7 @@ test(function() {
assert_equals(getComputedStyle(r7).backgroundColor, "rgba(0, 0, 0, 0)", "Background color should initially be transparent");
t7.className = "t7";
- assert_equals(internals.updateStyleAndReturnAffectedElementCount(), 1, "Subtree style recalc");
+ assert_equals(internals.updateStyleAndReturnAffectedElementCount(), 3, "Subtree style recalc");
// TODO(ericwilligers): Update Blink's implementation of sibling selector invalidation, so the following passes:
assert_equals(getComputedStyle(r7).backgroundColor, "rgb(0, 128, 0)", "Background color is green after class change");
}, "Sibling with compound descendant");
@@ -189,7 +189,7 @@ test(function() {
assert_equals(getComputedStyle(r8).backgroundColor, "rgba(0, 0, 0, 0)", "Background color should initially be transparent");
t8.className = "t8";
- assert_equals(internals.updateStyleAndReturnAffectedElementCount(), 11, "Subtree style recalc");
+ assert_equals(internals.updateStyleAndReturnAffectedElementCount(), 4, "Subtree style recalc");
assert_equals(getComputedStyle(r8).backgroundColor, "rgb(0, 128, 0)", "Background color is green after class change");
}, "Compound sibling selector containing id");
@@ -197,7 +197,7 @@ test(function() {
assert_equals(getComputedStyle(r9).backgroundColor, "rgba(0, 0, 0, 0)", "Background color should initially be transparent");
t9.className = "t9";
- assert_equals(internals.updateStyleAndReturnAffectedElementCount(), 9, "Subtree style recalc");
+ assert_equals(internals.updateStyleAndReturnAffectedElementCount(), 3, "Subtree style recalc");
assert_equals(getComputedStyle(r9).backgroundColor, "rgb(0, 128, 0)", "Background color is green after class change");
}, "Compound sibling selector");
@@ -206,7 +206,7 @@ test(function() {
assert_equals(getComputedStyle(r10b).backgroundColor, "rgba(0, 0, 0, 0)", "Background color b should initially be transparent");
t10.className = "t10";
- assert_equals(internals.updateStyleAndReturnAffectedElementCount(), 9, "Subtree style recalc");
+ assert_equals(internals.updateStyleAndReturnAffectedElementCount(), 5, "Subtree style recalc");
assert_equals(getComputedStyle(r10a).backgroundColor, "rgb(0, 128, 0)", "Background color a is green after class change");
assert_equals(getComputedStyle(r10b).backgroundColor, "rgb(0, 128, 0)", "Background color b is green after class change");
}, "Sibling with descendant :-webkit-any containing compound selector");

Powered by Google App Engine
This is Rietveld 408576698