Changeset 31999 in webkit
- Timestamp:
- Apr 17, 2008, 8:31:50 AM (17 years ago)
- Location:
- trunk/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/ChangeLog
r31998 r31999 1 2008-04-17 Adam Roben <aroben@apple.com> 2 3 Fix Bug 18544: REGRESSION (r31951): Two fast/xsl tests crash 4 5 <https://bugs.webkit.org/show_bug.cgi?id=18544> 6 7 r31951 changed XSLTProcessor::parseErrorFunc to expect a Console* as 8 the context parameter. The caller in XSLTProcessor was changed, but 9 the one in XSLStyleSheet was missed. 10 11 Reviewed by Alexey Proskuryakov. 12 13 * xml/XSLStyleSheet.cpp: 14 (WebCore::XSLStyleSheet::parseString): Pass the Console as the context 15 to parseErrorFunc. 16 1 17 2008-04-17 Adam Roben <aroben@apple.com> 2 18 -
trunk/WebCore/xml/XSLStyleSheet.cpp
r30243 r31999 26 26 27 27 #include "CString.h" 28 #include "Console.h" 29 #include "DOMWindow.h" 28 30 #include "DocLoader.h" 29 31 #include "Document.h" 32 #include "Frame.h" 30 33 #include "loader.h" 31 34 #include "Node.h" 32 #include "Page.h"33 35 #include "XMLTokenizer.h" 34 36 #include "XSLImportRule.h" … … 140 142 m_stylesheetDocTaken = false; 141 143 142 C hrome* chrome = 0;143 if ( Page* page = ownerDocument()->page())144 c hrome = page->chrome();145 xmlSetStructuredErrorFunc(c hrome, XSLTProcessor::parseErrorFunc);144 Console* console = 0; 145 if (Frame* frame = ownerDocument()->frame()) 146 console = frame->domWindow()->console(); 147 xmlSetStructuredErrorFunc(console, XSLTProcessor::parseErrorFunc); 146 148 147 149 m_stylesheetDoc = xmlReadMemory(reinterpret_cast<const char*>(string.characters()), string.length() * sizeof(UChar),
Note:
See TracChangeset
for help on using the changeset viewer.