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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/dynamic-class-pseudo-elements.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/dynamic-class-pseudo-elements.html
diff --git a/third_party/WebKit/LayoutTests/fast/css/dynamic-class-pseudo-elements.html b/third_party/WebKit/LayoutTests/fast/css/dynamic-class-pseudo-elements.html
index 22fc85c56bcb1bceecc18731859270f3ee437482..904d7a49e0ee87cf8ba5b2082190dea2df17d208 100644
--- a/third_party/WebKit/LayoutTests/fast/css/dynamic-class-pseudo-elements.html
+++ b/third_party/WebKit/LayoutTests/fast/css/dynamic-class-pseudo-elements.html
@@ -45,7 +45,7 @@ forceLayout();
t1.className = "a1";
if (window.internals)
- shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "2");
+ shouldBe("internals.updateStyleAndLayoutAndReturnAffectedElementCount()", "2");
shouldBe("getComputedStyle(r1, '::before').backgroundColor", "green");
@@ -57,7 +57,7 @@ forceLayout();
t2.className = "a2";
if (window.internals)
- shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "2");
+ shouldBe("internals.updateStyleAndLayoutAndReturnAffectedElementCount()", "2");
shouldBe("getComputedStyle(r2, '::after').backgroundColor", "green");
@@ -69,7 +69,7 @@ forceLayout();
t3.className = "a3";
if (window.internals)
- shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "9");
+ shouldBe("internals.updateStyleAndLayoutAndReturnAffectedElementCount()", "9");
shouldBe("getComputedStyle(r3, '::first-line').backgroundColor", "green");
@@ -81,7 +81,7 @@ forceLayout();
t4.className = "a4";
if (window.internals)
- shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "10");
+ shouldBe("internals.updateStyleAndLayoutAndReturnAffectedElementCount()", "10");
document.body.offsetLeft; // workaround for issue 351308
shouldBe("getComputedStyle(r4, '::first-letter').backgroundColor", "green");

Powered by Google App Engine
This is Rietveld 408576698