| Index: Source/core/html/imports/HTMLImportsController.cpp
|
| diff --git a/Source/core/html/imports/HTMLImportsController.cpp b/Source/core/html/imports/HTMLImportsController.cpp
|
| index b91285c24c8785e8811f343b726a9c920fe0f23e..2280d2d528d6dcdbb92e1f9555ebaaacdf2a8706 100644
|
| --- a/Source/core/html/imports/HTMLImportsController.cpp
|
| +++ b/Source/core/html/imports/HTMLImportsController.cpp
|
| @@ -69,7 +69,7 @@ void HTMLImportsController::clear()
|
|
|
| HTMLImportChild* HTMLImportsController::createChild(const KURL& url, HTMLImport* parent, HTMLImportChildClient* client)
|
| {
|
| - OwnPtr<HTMLImportChild> loader = adoptPtr(new HTMLImportChild(url, client->isCreatedByParser()));
|
| + OwnPtr<HTMLImportChild> loader = adoptPtr(new HTMLImportChild(*m_master, url, client->isCreatedByParser()));
|
| loader->setClient(client);
|
| parent->appendChild(loader.get());
|
| m_imports.append(loader.release());
|
|
|