| Index: third_party/WebKit/Source/core/dom/DocumentTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/DocumentTest.cpp b/third_party/WebKit/Source/core/dom/DocumentTest.cpp
|
| index d9e2f2fa11a05e89f2ccce87903289a10a8db15c..d16f3105a5c836fd6fb74be077a8fab0de130b5f 100644
|
| --- a/third_party/WebKit/Source/core/dom/DocumentTest.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/DocumentTest.cpp
|
| @@ -30,6 +30,8 @@
|
|
|
| #include "core/dom/Document.h"
|
|
|
| +#include <memory>
|
| +#include "bindings/core/v8/V8BindingForTesting.h"
|
| #include "core/dom/NodeWithIndex.h"
|
| #include "core/dom/SynchronousMutationObserver.h"
|
| #include "core/dom/Text.h"
|
| @@ -43,7 +45,6 @@
|
| #include "platform/weborigin/SecurityOrigin.h"
|
| #include "testing/gmock/include/gmock/gmock.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| -#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -575,6 +576,7 @@ TEST_F(DocumentTest, SynchronousMutationNotifieReplaceChild) {
|
| }
|
|
|
| TEST_F(DocumentTest, SynchronousMutationNotifierSplitTextNode) {
|
| + V8TestingScope scope;
|
| auto& observer = *new TestSynchronousMutationObserver(document());
|
|
|
| Text* splitSample = document().createTextNode("0123456789");
|
|
|