Changeset 48826 in webkit for trunk/WebCore/dom/XMLTokenizerLibxml2.cpp
- Timestamp:
- Sep 28, 2009, 1:11:36 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/dom/XMLTokenizerLibxml2.cpp
r47313 r48826 51 51 #include "ScriptValue.h" 52 52 #include "TextResourceDecoder.h" 53 #include "TransformSource.h" 53 54 #include "XMLTokenizerScope.h" 54 55 #include <libxml/parser.h> … … 1281 1282 #if ENABLE(XSLT) 1282 1283 if (m_sawXSLTransform) { 1283 m_doc->setTransformSource(xmlDocPtrForString(m_doc->docLoader(), m_originalSourceForTransform, m_doc->url().string())); 1284 void* doc = xmlDocPtrForString(m_doc->docLoader(), m_originalSourceForTransform, m_doc->url().string()); 1285 m_doc->setTransformSource(new TransformSource(doc)); 1284 1286 1285 1287 m_doc->setParsing(false); // Make the doc think it's done, so it will apply xsl sheets.
Note:
See TracChangeset
for help on using the changeset viewer.