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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/invalidation/targeted-class-shadow-combinator.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-shadow-combinator.html
diff --git a/third_party/WebKit/LayoutTests/fast/css/invalidation/targeted-class-shadow-combinator.html b/third_party/WebKit/LayoutTests/fast/css/invalidation/targeted-class-shadow-combinator.html
index f7992b9a75e0752879ce204eab72b3b9cf0602a2..3ad9ddb3a7cef45f696d6d4070629746433e32fd 100644
--- a/third_party/WebKit/LayoutTests/fast/css/invalidation/targeted-class-shadow-combinator.html
+++ b/third_party/WebKit/LayoutTests/fast/css/invalidation/targeted-class-shadow-combinator.html
@@ -36,13 +36,13 @@ document.body.offsetLeft; // force style recalc.
document.getElementById("t1").className = "t1";
if (window.internals)
- shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "1");
+ shouldBe("internals.updateStyleAndLayoutAndReturnAffectedElementCount()", "1");
shouldBe("getComputedStyle(match1, null).backgroundColor", "green");
document.body.offsetLeft; // force style recalc.
document.getElementById("t2").className = "t2";
if (window.internals)
- shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "1");
+ shouldBe("internals.updateStyleAndLayoutAndReturnAffectedElementCount()", "1");
shouldBe("getComputedStyle(match2, null).backgroundColor", "green");
</script>

Powered by Google App Engine
This is Rietveld 408576698