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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/invalidation/targeted-class-content-pseudo.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/targeted-class-content-pseudo.html
diff --git a/third_party/WebKit/LayoutTests/fast/css/invalidation/targeted-class-content-pseudo.html b/third_party/WebKit/LayoutTests/fast/css/invalidation/targeted-class-content-pseudo.html
index 849fe4e7d067899ba38d2ed9815d43a491404757..23fcba4892209f43ddb46bf58a1f663b8a7d7b1e 100644
--- a/third_party/WebKit/LayoutTests/fast/css/invalidation/targeted-class-content-pseudo.html
+++ b/third_party/WebKit/LayoutTests/fast/css/invalidation/targeted-class-content-pseudo.html
@@ -37,7 +37,7 @@ var i1 = host1.shadowRoot.getElementById("i1");
i1.className = "c1";
if (window.internals)
- shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "5");
+ shouldBe("internals.updateStyleAndLayoutAndReturnAffectedElementCount()", "5");
shouldBe("getComputedStyle(r1, null).backgroundColor", "green");
@@ -48,7 +48,7 @@ var i2 = host2.shadowRoot.getElementById("i2");
i2.className = "c2";
if (window.internals)
- shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "3");
+ shouldBe("internals.updateStyleAndLayoutAndReturnAffectedElementCount()", "3");
shouldBe("getComputedStyle(r2, null).backgroundColor", "green");
@@ -59,7 +59,7 @@ var i3 = host3.shadowRoot.getElementById("i3");
i3.className = "c3";
if (window.internals)
- shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "1");
+ shouldBe("internals.updateStyleAndLayoutAndReturnAffectedElementCount()", "1");
shouldBe("getComputedStyle(r3, null).backgroundColor", "green");

Powered by Google App Engine
This is Rietveld 408576698