| Index: third_party/WebKit/Source/bindings/core/v8/ScriptPromisePropertyTest.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/ScriptPromisePropertyTest.cpp b/third_party/WebKit/Source/bindings/core/v8/ScriptPromisePropertyTest.cpp
|
| index 6446e1ea8bcd3d5892349500e40342bbd01af2ea..16b5739114257ec71b38d72d07a4b2da12cbd876 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/ScriptPromisePropertyTest.cpp
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/ScriptPromisePropertyTest.cpp
|
| @@ -375,9 +375,8 @@ TEST_F(ScriptPromisePropertyGarbageCollectedTest, Resolve_DeadContext) {
|
| }
|
|
|
| destroyContext();
|
| - EXPECT_TRUE(
|
| - !getProperty()->getExecutionContext() ||
|
| - getProperty()->getExecutionContext()->activeDOMObjectsAreStopped());
|
| + EXPECT_TRUE(!getProperty()->getExecutionContext() ||
|
| + getProperty()->getExecutionContext()->isContextDestroyed());
|
|
|
| getProperty()->resolve(new GarbageCollectedScriptWrappable("value"));
|
| EXPECT_EQ(Property::Pending, getProperty()->getState());
|
|
|