⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 202894 in webkit


Ignore:
Timestamp:
Jul 6, 2016, 10:41:01 PM (10 years ago)
Author:
timothy_horton@apple.com
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 :|

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r202889 r202894  
     12016-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
    1102016-07-06  Tim Horton  <timothy_horton@apple.com>
    211
  • trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp

    r202889 r202894  
    10361036    loadParameters.navigationID = navigation->navigationID();
    10371037    loadParameters.string = htmlString;
    1038     loadParameters.encodingName = ASCIILiteral("text/html");
     1038    loadParameters.MIMEType = ASCIILiteral("text/html");
    10391039    loadParameters.baseURLString = baseURL;
    10401040    loadParameters.userData = UserData(process().transformObjectsToHandles(userData).get());
Note: See TracChangeset for help on using the changeset viewer.