Title: [88515] trunk/Source/WebKit/efl
Revision
88515
Author
[email protected]
Date
2011-06-09 19:43:40 -0700 (Thu, 09 Jun 2011)

Log Message

2011-05-30  Raphael Kubo da Costa  <[email protected]>

        Reviewed by Brent Fulgham.

        [efl] Do not enable the encoding detector by default.
        https://bugs.webkit.org/show_bug.cgi?id=61744

        This should match the behaviour of other ports more closely, and makes
        at least dom/xhtml/level3/core/documentgetinputencoding01.xhtml pass.

        * ewk/ewk_view.cpp:
        (_ewk_view_priv_new):

Modified Paths

Diff

Modified: trunk/Source/WebKit/efl/ChangeLog (88514 => 88515)


--- trunk/Source/WebKit/efl/ChangeLog	2011-06-10 02:30:59 UTC (rev 88514)
+++ trunk/Source/WebKit/efl/ChangeLog	2011-06-10 02:43:40 UTC (rev 88515)
@@ -1,3 +1,16 @@
+2011-05-30  Raphael Kubo da Costa  <[email protected]>
+
+        Reviewed by Brent Fulgham.
+
+        [efl] Do not enable the encoding detector by default.
+        https://bugs.webkit.org/show_bug.cgi?id=61744
+
+        This should match the behaviour of other ports more closely, and makes
+        at least dom/xhtml/level3/core/documentgetinputencoding01.xhtml pass.
+
+        * ewk/ewk_view.cpp:
+        (_ewk_view_priv_new):
+
 2011-06-08  Jaehun Lim  <[email protected]>
 
         Reviewed by Antonio Gomes.

Modified: trunk/Source/WebKit/efl/ewk/ewk_view.cpp (88514 => 88515)


--- trunk/Source/WebKit/efl/ewk/ewk_view.cpp	2011-06-10 02:30:59 UTC (rev 88514)
+++ trunk/Source/WebKit/efl/ewk/ewk_view.cpp	2011-06-10 02:43:40 UTC (rev 88515)
@@ -575,7 +575,7 @@
     priv->page_settings->setLocalStorageEnabled(true);
     priv->page_settings->setOfflineWebApplicationCacheEnabled(true);
     priv->page_settings->setUsesPageCache(true);
-    priv->page_settings->setUsesEncodingDetector(true);
+    priv->page_settings->setUsesEncodingDetector(false);
 
     url = ""
     priv->settings.user_stylesheet = eina_stringshare_add(url.string().utf8().data());
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to