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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/invalidation/invalidation-set-with-adjacent-combinators.html

Issue 1896793002: Rename (updateLayout/updateStyle).*.() to updateStyleAndLayout.*.() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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/invalidation-set-with-adjacent-combinators.html
diff --git a/third_party/WebKit/LayoutTests/fast/css/invalidation/invalidation-set-with-adjacent-combinators.html b/third_party/WebKit/LayoutTests/fast/css/invalidation/invalidation-set-with-adjacent-combinators.html
index 38b88d420d19f70cb602e8fb4ddf51d803bc2ad4..1836e7571a2852fe7872091906edacabafb4eed2 100644
--- a/third_party/WebKit/LayoutTests/fast/css/invalidation/invalidation-set-with-adjacent-combinators.html
+++ b/third_party/WebKit/LayoutTests/fast/css/invalidation/invalidation-set-with-adjacent-combinators.html
@@ -46,29 +46,29 @@ shouldBe("getComputedStyle(i1, null).backgroundColor", "transparent");
document.body.offsetTop; // Force style recalc.
i1.className = "c1";
if (window.internals)
- shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "1");
+ shouldBe("internals.updateStyleAndLayoutAndReturnAffectedElementCount()", "1");
document.body.offsetTop; // Force style recalc.
i2.className = "c2";
if (window.internals)
- shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "1");
+ shouldBe("internals.updateStyleAndLayoutAndReturnAffectedElementCount()", "1");
document.body.offsetTop; // Force style recalc.
i3.className = "c3";
if (window.internals)
- shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "1");
+ shouldBe("internals.updateStyleAndLayoutAndReturnAffectedElementCount()", "1");
document.body.offsetTop; // Force style recalc.
i4.className = "c4";
if (window.internals)
- shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "1");
+ shouldBe("internals.updateStyleAndLayoutAndReturnAffectedElementCount()", "1");
shouldBe("getComputedStyle(i1, null).backgroundColor", "transparent");
document.body.offsetLeft; // force style recalc.
i5.className = "c5";
if (window.internals)
- shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "1");
+ shouldBe("internals.updateStyleAndLayoutAndReturnAffectedElementCount()", "1");
shouldBe("getComputedStyle(i1, null).backgroundColor", "green");

Powered by Google App Engine
This is Rietveld 408576698