Changeset 28003 in webkit
- Timestamp:
- Nov 24, 2007, 3:32:48 PM (18 years ago)
- Location:
- trunk/WebCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/ChangeLog
r28002 r28003 1 2007-11-24 Adam Roben <aroben@apple.com> 2 3 Windows build fix 4 5 Turn off the change made in r27984 on Windows for now. 6 7 * xml/XSLTProcessor.cpp: 8 (WebCore::XSLTProcessor::transformToString): 9 * xml/XSLTUnicodeSort.cpp: 10 1 11 2007-11-24 Timothy Hatcher <timothy@apple.com> 2 12 -
trunk/WebCore/xml/XSLTProcessor.cpp
r27984 r28003 352 352 xsltTransformContextPtr transformContext = xsltNewTransformContext(sheet, sourceDoc); 353 353 registerXSLTExtensions(transformContext); 354 #if USE(ICU_UNICODE) 354 // FIXME: <rdar://5611712> Remove the PLATFORM(WIN) check once ICU on Windows has collation support. 355 #if USE(ICU_UNICODE) && !PLATFORM(WIN) 355 356 // <http://bugs.webkit.org/show_bug.cgi?id=16077>: XSLT processor <xsl:sort> algorithm only compares by code point 356 357 // Only implemented for ICU yet. -
trunk/WebCore/xml/XSLTUnicodeSort.cpp
r27987 r28003 30 30 #include "XSLTUnicodeSort.h" 31 31 32 #if ENABLE(XSLT) && USE(ICU_UNICODE) 32 // FIXME: <rdar://5611712> Remove the PLATFORM(WIN) check once ICU on Windows has collation support. 33 #if ENABLE(XSLT) && USE(ICU_UNICODE) && !PLATFORM(WIN) 33 34 34 35 #include <libxslt/templates.h>
Note:
See TracChangeset
for help on using the changeset viewer.