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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/getComputedStyle/computed-style-recalc.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/getComputedStyle/computed-style-recalc.html
diff --git a/third_party/WebKit/LayoutTests/fast/css/getComputedStyle/computed-style-recalc.html b/third_party/WebKit/LayoutTests/fast/css/getComputedStyle/computed-style-recalc.html
index 1c4acf95dc85c692192b9752a251efa8ac270276..d5e9a0893f1d50d7321d3b7b854cffa0f94675da 100644
--- a/third_party/WebKit/LayoutTests/fast/css/getComputedStyle/computed-style-recalc.html
+++ b/third_party/WebKit/LayoutTests/fast/css/getComputedStyle/computed-style-recalc.html
@@ -49,7 +49,7 @@ document.body.offsetTop;
document.body.querySelector("#t2 > div > div").className = "c";
shouldBe("getComputedStyle(document.body.querySelector('#t2 .e')).color", "green", true);
if (window.internals)
- shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "2");
+ shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "1");
// No style invalidation or recalc scheduled for an ascendant of .b, and even if affected-by-adjacent
// bits are set on the ascendant (because of a+b), it doesn't matter since that ascendant does
@@ -59,6 +59,6 @@ document.body.offsetTop;
document.body.querySelector("#t3 > div > div").className = "c";
shouldBe("getComputedStyle(document.body.querySelector('#t3 .b')).color", "green", true);
if (window.internals)
- shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "2");
+ shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "1");
</script>

Powered by Google App Engine
This is Rietveld 408576698