| OLD | NEW |
| 1 /* | 1 /* |
| 2 * This file is part of the XSL implementation. | 2 * This file is part of the XSL implementation. |
| 3 * | 3 * |
| 4 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple, Inc. All rights reserved. | 4 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple, Inc. All rights reserved. |
| 5 * Copyright (C) 2005, 2006 Alexey Proskuryakov <ap@webkit.org> | 5 * Copyright (C) 2005, 2006 Alexey Proskuryakov <ap@webkit.org> |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 | 69 |
| 70 RefPtrWillBeRawPtr<Document> result = nullptr; | 70 RefPtrWillBeRawPtr<Document> result = nullptr; |
| 71 DocumentInit init(sourceIsDocument ? ownerDocument->url() : KURL(), frame); | 71 DocumentInit init(sourceIsDocument ? ownerDocument->url() : KURL(), frame); |
| 72 | 72 |
| 73 bool forceXHTML = sourceMIMEType == "text/plain"; | 73 bool forceXHTML = sourceMIMEType == "text/plain"; |
| 74 if (forceXHTML) | 74 if (forceXHTML) |
| 75 transformTextStringToXHTMLDocumentString(documentSource); | 75 transformTextStringToXHTMLDocumentString(documentSource); |
| 76 | 76 |
| 77 if (frame) { | 77 if (frame) { |
| 78 RefPtrWillBeRawPtr<Document> oldDocument = frame->document(); | 78 RefPtrWillBeRawPtr<Document> oldDocument = frame->document(); |
| 79 oldDocument->detach(); | |
| 80 result = frame->localDOMWindow()->installNewDocument(sourceMIMEType, ini
t, forceXHTML); | 79 result = frame->localDOMWindow()->installNewDocument(sourceMIMEType, ini
t, forceXHTML); |
| 81 | 80 |
| 82 // Before parsing, we need to save & detach the old document and get the
new document | 81 // Before parsing, we need to save & detach the old document and get the
new document |
| 83 // in place. We have to do this only if we're rendering the result docum
ent. | 82 // in place. We have to do this only if we're rendering the result docum
ent. |
| 84 if (FrameView* view = frame->view()) | 83 if (FrameView* view = frame->view()) |
| 85 view->clear(); | 84 view->clear(); |
| 86 | 85 |
| 87 if (oldDocument) { | 86 if (oldDocument) { |
| 88 DocumentXSLT::from(*result).setTransformSourceDocument(oldDocument.g
et()); | 87 DocumentXSLT::from(*result).setTransformSourceDocument(oldDocument.g
et()); |
| 89 result->updateSecurityOrigin(oldDocument->securityOrigin()); | 88 result->updateSecurityOrigin(oldDocument->securityOrigin()); |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 } | 157 } |
| 159 | 158 |
| 160 DEFINE_TRACE(XSLTProcessor) | 159 DEFINE_TRACE(XSLTProcessor) |
| 161 { | 160 { |
| 162 visitor->trace(m_stylesheet); | 161 visitor->trace(m_stylesheet); |
| 163 visitor->trace(m_stylesheetRootNode); | 162 visitor->trace(m_stylesheetRootNode); |
| 164 visitor->trace(m_document); | 163 visitor->trace(m_document); |
| 165 } | 164 } |
| 166 | 165 |
| 167 } // namespace blink | 166 } // namespace blink |
| OLD | NEW |