| Index: third_party/WebKit/Source/web/tests/IntersectionObserverTest.cpp
|
| diff --git a/third_party/WebKit/Source/web/tests/IntersectionObserverTest.cpp b/third_party/WebKit/Source/web/tests/IntersectionObserverTest.cpp
|
| index b9bff2fab2dca4159fd2c522c7c7b6c6c8835da1..79b8cf74106d0317898b56002003f83f47786ce2 100644
|
| --- a/third_party/WebKit/Source/web/tests/IntersectionObserverTest.cpp
|
| +++ b/third_party/WebKit/Source/web/tests/IntersectionObserverTest.cpp
|
| @@ -53,12 +53,12 @@ TEST_F(IntersectionObserverTest, ObserveSchedulesFrame)
|
|
|
| compositor().beginFrame();
|
| ASSERT_FALSE(compositor().needsAnimate());
|
| - EXPECT_TRUE(observer->takeRecords().isEmpty());
|
| + EXPECT_TRUE(observer->takeRecords(exceptionState).isEmpty());
|
| EXPECT_EQ(observerCallback->callCount(), 0);
|
|
|
| Element* target = document().getElementById("target");
|
| ASSERT_TRUE(target);
|
| - observer->observe(target);
|
| + observer->observe(target, exceptionState);
|
| EXPECT_TRUE(compositor().needsAnimate());
|
| }
|
|
|
|
|