Title: [202894] trunk/Source/WebKit2
Revision
202894
Author
[email protected]
Date
2016-07-06 22:41:01 -0700 (Wed, 06 Jul 2016)

Log Message

Some API tests started failing after r202889
https://bugs.webkit.org/show_bug.cgi?id=159498

* UIProcess/WebPageProxy.cpp:
(WebKit::WebPageProxy::loadHTMLString):
Fix a typo; this is a MIME type, not an encoding :|

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (202893 => 202894)


--- trunk/Source/WebKit2/ChangeLog	2016-07-07 04:14:28 UTC (rev 202893)
+++ trunk/Source/WebKit2/ChangeLog	2016-07-07 05:41:01 UTC (rev 202894)
@@ -1,5 +1,14 @@
 2016-07-06  Tim Horton  <[email protected]>
 
+        Some API tests started failing after r202889
+        https://bugs.webkit.org/show_bug.cgi?id=159498
+
+        * UIProcess/WebPageProxy.cpp:
+        (WebKit::WebPageProxy::loadHTMLString):
+        Fix a typo; this is a MIME type, not an encoding :|
+
+2016-07-06  Tim Horton  <[email protected]>
+
         Email from June 1st containing text 'Today @ 7:10PM' is linkified, but shouldn't be
         https://bugs.webkit.org/show_bug.cgi?id=159498
         <rdar://problem/26719903>

Modified: trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp (202893 => 202894)


--- trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp	2016-07-07 04:14:28 UTC (rev 202893)
+++ trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp	2016-07-07 05:41:01 UTC (rev 202894)
@@ -1035,7 +1035,7 @@
     LoadParameters loadParameters;
     loadParameters.navigationID = navigation->navigationID();
     loadParameters.string = htmlString;
-    loadParameters.encodingName = ASCIILiteral("text/html");
+    loadParameters.MIMEType = ASCIILiteral("text/html");
     loadParameters.baseURLString = baseURL;
     loadParameters.userData = UserData(process().transformObjectsToHandles(userData).get());
     addPlatformLoadParameters(loadParameters);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to