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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/invalidation/sibling-inserted.html

Issue 1509853002: Remove checkForChildrenAdjacentRuleChanges. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 11 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/sibling-inserted.html
diff --git a/third_party/WebKit/LayoutTests/fast/css/invalidation/sibling-inserted.html b/third_party/WebKit/LayoutTests/fast/css/invalidation/sibling-inserted.html
index b035d7629d9cbb15b15395c210a573ef8ca32a40..9c7e23c64476a059f26c99a14bac6d9ab3335c64 100644
--- a/third_party/WebKit/LayoutTests/fast/css/invalidation/sibling-inserted.html
+++ b/third_party/WebKit/LayoutTests/fast/css/invalidation/sibling-inserted.html
@@ -52,14 +52,13 @@ test(function() {
var t2 = document.createElement('div');
t2.id = 't2';
i2.parentNode.insertBefore(t2, i2);
- assert_equals(internals.updateStyleAndReturnAffectedElementCount(), 5, "Subtree style recalc");
+ assert_equals(internals.updateStyleAndReturnAffectedElementCount(), 4, "Subtree style recalc");
assert_equals(getComputedStyle(r2).backgroundColor, "rgb(0, 128, 0)", "Background color is green after class change");
}, "Insert before siblings");
test(function() {
var d3 = document.getElementById('d3');
var r3 = document.getElementById('r3');
- assert_true(!!window.eventSender, "This test only works with eventSender present");
d3.parentNode.removeChild(d3);
assert_equals(internals.updateStyleAndReturnAffectedElementCount(), 3, "Subtree style recalc");

Powered by Google App Engine
This is Rietveld 408576698