Title: [214273] trunk/Source/WebKit/mac
Revision
214273
Author
[email protected]
Date
2017-03-22 13:30:11 -0700 (Wed, 22 Mar 2017)

Log 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.

Modified Paths

Diff

Modified: trunk/Source/WebKit/mac/ChangeLog (214272 => 214273)


--- trunk/Source/WebKit/mac/ChangeLog	2017-03-22 20:07:21 UTC (rev 214272)
+++ trunk/Source/WebKit/mac/ChangeLog	2017-03-22 20:30:11 UTC (rev 214273)
@@ -1,3 +1,15 @@
+2017-03-22  Dan Bernstein  <[email protected]>
+
+        [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.
+
 2017-03-22  Andy Estes  <[email protected]>
 
         [QuickLook] Rename QuickLookHandle to PreviewLoader

Modified: trunk/Source/WebKit/mac/WebView/WebView.mm (214272 => 214273)


--- trunk/Source/WebKit/mac/WebView/WebView.mm	2017-03-22 20:07:21 UTC (rev 214272)
+++ trunk/Source/WebKit/mac/WebView/WebView.mm	2017-03-22 20:30:11 UTC (rev 214273)
@@ -1730,7 +1730,6 @@
     _private->page->settings().setMinimumLogicalFontSize(9);
     _private->page->settings().setDefaultFontSize([_private->preferences defaultFontSize]);
     _private->page->settings().setDefaultFixedFontSize(13);
-    _private->page->settings().setDownloadableBinaryFontsEnabled(false);
     _private->page->settings().setAcceleratedDrawingEnabled([preferences acceleratedDrawingEnabled]);
     _private->page->settings().setDisplayListDrawingEnabled([preferences displayListDrawingEnabled]);
     
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to