Changeset 214273 in webkit


Ignore:
Timestamp:
Mar 22, 2017, 1:30:11 PM (8 years ago)
Author:
mitz@apple.com
Message:

[iOS] downloadableBinaryFontsEnabled is set to false in -initSimpleHTMLDocumentWithStyle:frame:preferences:groupName:
https://bugs.webkit.org/show_bug.cgi?id=169967
<rdar://problem/30406898>

Reviewed by Anders Carlsson.

  • WebView/WebView.mm:

(-[WebView initSimpleHTMLDocumentWithStyle:frame:preferences:groupName:]): Removed call to

Settings::downloadableBinaryFontsEnabled. The default is true.

Location:
trunk/Source/WebKit/mac
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/mac/ChangeLog

    r214266 r214273  
     12017-03-22  Dan Bernstein  <mitz@apple.com>
     2
     3        [iOS] downloadableBinaryFontsEnabled is set to false in -initSimpleHTMLDocumentWithStyle:frame:preferences:groupName:
     4        https://bugs.webkit.org/show_bug.cgi?id=169967
     5        <rdar://problem/30406898>
     6
     7        Reviewed by Anders Carlsson.
     8
     9        * WebView/WebView.mm:
     10        (-[WebView initSimpleHTMLDocumentWithStyle:frame:preferences:groupName:]): Removed call to
     11          Settings::downloadableBinaryFontsEnabled. The default is true.
     12
    1132017-03-22  Andy Estes  <aestes@apple.com>
    214
  • trunk/Source/WebKit/mac/WebView/WebView.mm

    r214231 r214273  
    17311731    _private->page->settings().setDefaultFontSize([_private->preferences defaultFontSize]);
    17321732    _private->page->settings().setDefaultFixedFontSize(13);
    1733     _private->page->settings().setDownloadableBinaryFontsEnabled(false);
    17341733    _private->page->settings().setAcceleratedDrawingEnabled([preferences acceleratedDrawingEnabled]);
    17351734    _private->page->settings().setDisplayListDrawingEnabled([preferences displayListDrawingEnabled]);
Note: See TracChangeset for help on using the changeset viewer.