Changeset 202894 in webkit
- Timestamp:
- Jul 6, 2016, 10:41:01 PM (10 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
UIProcess/WebPageProxy.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r202889 r202894 1 2016-07-06 Tim Horton <timothy_horton@apple.com> 2 3 Some API tests started failing after r202889 4 https://bugs.webkit.org/show_bug.cgi?id=159498 5 6 * UIProcess/WebPageProxy.cpp: 7 (WebKit::WebPageProxy::loadHTMLString): 8 Fix a typo; this is a MIME type, not an encoding :| 9 1 10 2016-07-06 Tim Horton <timothy_horton@apple.com> 2 11 -
trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp
r202889 r202894 1036 1036 loadParameters.navigationID = navigation->navigationID(); 1037 1037 loadParameters.string = htmlString; 1038 loadParameters. encodingName = ASCIILiteral("text/html");1038 loadParameters.MIMEType = ASCIILiteral("text/html"); 1039 1039 loadParameters.baseURLString = baseURL; 1040 1040 loadParameters.userData = UserData(process().transformObjectsToHandles(userData).get());
Note:
See TracChangeset
for help on using the changeset viewer.