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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/dir-auto-insert-text-invalidation.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/dom/dir-auto-insert-text-invalidation.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/dir-auto-insert-text-invalidation.html b/third_party/WebKit/LayoutTests/fast/dom/dir-auto-insert-text-invalidation.html
index 0447021fd445cb2364fcbf4c9d728ec9a636e8bd..605175fa34967b977d778b917758251ab13118f0 100644
--- a/third_party/WebKit/LayoutTests/fast/dom/dir-auto-insert-text-invalidation.html
+++ b/third_party/WebKit/LayoutTests/fast/dom/dir-auto-insert-text-invalidation.html
@@ -25,7 +25,7 @@
textInsertionPoint.innerHTML = "؄ل";
if (window.internals)
- shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "4");
+ shouldBe("internals.updateStyleAndLayoutAndReturnAffectedElementCount()", "4");
shouldBeEqualToString("getComputedStyle(outerAuto).direction", "rtl");
shouldBeEqualToString("getComputedStyle(textInsertionPoint).direction", "rtl");
@@ -39,7 +39,7 @@
textInsertionPoint.dir = "ltr";
if (window.internals)
- shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "4");
+ shouldBe("internals.updateStyleAndLayoutAndReturnAffectedElementCount()", "4");
shouldBeEqualToString("getComputedStyle(outerAuto).direction", "ltr");
shouldBeEqualToString("getComputedStyle(textInsertionPoint).direction", "ltr");

Powered by Google App Engine
This is Rietveld 408576698