| Index: third_party/WebKit/Source/core/editing/EditingTestBase.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/EditingTestBase.cpp b/third_party/WebKit/Source/core/editing/EditingTestBase.cpp
|
| index f41ad2a800dde336df3054779e253e0ee801a0c3..78cc0cc20f3708a2eb699fccaa2b46abbff240f2 100644
|
| --- a/third_party/WebKit/Source/core/editing/EditingTestBase.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/EditingTestBase.cpp
|
| @@ -33,6 +33,11 @@ void EditingTestBase::SetUp() {
|
| m_dummyPageHolder = DummyPageHolder::create(IntSize(800, 600));
|
| }
|
|
|
| +void EditingTestBase::setupPageWithClients(Page::PageClients* clients) {
|
| + DCHECK(!m_dummyPageHolder) << "Page should be set up only once";
|
| + m_dummyPageHolder = DummyPageHolder::create(IntSize(800, 600), clients);
|
| +}
|
| +
|
| ShadowRoot* EditingTestBase::createShadowRootForElementWithIDAndSetInnerHTML(
|
| TreeScope& scope,
|
| const char* hostElementID,
|
|
|