Index: third_party/WebKit/LayoutTests/fast/css/invalidation/fullscreen.html |
diff --git a/third_party/WebKit/LayoutTests/fast/css/invalidation/fullscreen.html b/third_party/WebKit/LayoutTests/fast/css/invalidation/fullscreen.html |
index c8bb4c89eb2d807ccdbce16288406069bbe056c0..0e93de36724a8dcee1956bbaab6902ebdc930fc3 100644 |
--- a/third_party/WebKit/LayoutTests/fast/css/invalidation/fullscreen.html |
+++ b/third_party/WebKit/LayoutTests/fast/css/invalidation/fullscreen.html |
@@ -34,14 +34,14 @@ function runTests() { |
testRoot.offsetTop; // force recalc |
testRoot.className = "t1"; |
if (window.internals) |
- shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "1"); |
+ shouldBe("internals.updateStyleAndLayoutAndReturnAffectedElementCount()", "1"); |
shouldBe("getComputedStyle(full).backgroundColor", "green"); |
shouldBe("getComputedStyle(ancestor).backgroundColor", "red"); |
testRoot.offsetTop; // force recalc |
testRoot.className += " t2"; |
if (window.internals) |
- shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "1"); |
+ shouldBe("internals.updateStyleAndLayoutAndReturnAffectedElementCount()", "1"); |
shouldBe("getComputedStyle(ancestor).backgroundColor", "green"); |
finishJSTest(); |