Title: [127818] trunk/Source/WebCore
Revision
127818
Author
[email protected]
Date
2012-09-06 21:21:28 -0700 (Thu, 06 Sep 2012)

Log Message

[Qt] Fix text encoding detecting
https://bugs.webkit.org/show_bug.cgi?id=96014

Patch by Simon Hausmann <[email protected]> on 2012-09-06
Reviewed by Kenneth Rohde Christiansen.

Since we rely on ICU now, we might as well use the actually implemented text encoding
detector instead of the dummy "none" one.

I could not locate any layout tests that actually cover this :(

* Target.pri:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (127817 => 127818)


--- trunk/Source/WebCore/ChangeLog	2012-09-07 04:18:53 UTC (rev 127817)
+++ trunk/Source/WebCore/ChangeLog	2012-09-07 04:21:28 UTC (rev 127818)
@@ -1,3 +1,17 @@
+2012-09-06  Simon Hausmann  <[email protected]>
+
+        [Qt] Fix text encoding detecting
+        https://bugs.webkit.org/show_bug.cgi?id=96014
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        Since we rely on ICU now, we might as well use the actually implemented text encoding
+        detector instead of the dummy "none" one.
+
+        I could not locate any layout tests that actually cover this :(
+
+        * Target.pri:
+
 2012-09-06  Yoshifumi Inoue  <[email protected]>
 
         We should have localized strings of date time fields for accessibility

Modified: trunk/Source/WebCore/Target.pri (127817 => 127818)


--- trunk/Source/WebCore/Target.pri	2012-09-07 04:18:53 UTC (rev 127817)
+++ trunk/Source/WebCore/Target.pri	2012-09-07 04:21:28 UTC (rev 127818)
@@ -1073,7 +1073,7 @@
     platform/text/TextCodecUTF8.cpp \
     platform/text/TextCodecICU.cpp \
     platform/text/TextEncoding.cpp \
-    platform/text/TextEncodingDetectorNone.cpp \
+    platform/text/TextEncodingDetectorICU.cpp \
     platform/text/TextEncodingRegistry.cpp \
     platform/text/TextStream.cpp \
     platform/ThreadGlobalData.cpp \
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to