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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/invalidation/content-attr.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/content-attr.html
diff --git a/third_party/WebKit/LayoutTests/fast/css/invalidation/content-attr.html b/third_party/WebKit/LayoutTests/fast/css/invalidation/content-attr.html
index 19e76b72a51607900d74a7e0d07c352f7622a3ec..7062dedf0b71cdb34ac60c42cd7509215a83ab6e 100644
--- a/third_party/WebKit/LayoutTests/fast/css/invalidation/content-attr.html
+++ b/third_party/WebKit/LayoutTests/fast/css/invalidation/content-attr.html
@@ -25,17 +25,17 @@ document.body.offsetTop; // force layout
before.setAttribute("attr-unused", "unused");
if (window.internals)
- shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "0");
+ shouldBe("internals.updateStyleAndLayoutAndReturnAffectedElementCount()", "0");
document.body.offsetTop; // force layout
before.setAttribute("my-value", "before");
if (window.internals)
- shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "2");
+ shouldBe("internals.updateStyleAndLayoutAndReturnAffectedElementCount()", "2");
document.body.offsetTop; // force layout
after.setAttribute("my-value", "after");
if (window.internals)
- shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "2");
+ shouldBe("internals.updateStyleAndLayoutAndReturnAffectedElementCount()", "2");
</script>

Powered by Google App Engine
This is Rietveld 408576698