Changeset 206701 in webkit


Ignore:
Timestamp:
Sep 30, 2016 6:26:10 PM (8 years ago)
Author:
mmaxfield@apple.com
Message:

Turn variation fonts on by default
https://bugs.webkit.org/show_bug.cgi?id=162818

Reviewed by Simon Fraser.

Source/WebCore:

No new tests because there is no behavior change.

  • page/Settings.in:
  • testing/InternalSettings.cpp:

(WebCore::InternalSettings::variationFontsEnabled):

Source/WebKit2:

  • Shared/WebPreferencesDefinitions.h:
Location:
trunk/Source
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r206692 r206701  
     12016-09-30  Myles C. Maxfield  <mmaxfield@apple.com>
     2
     3        Turn variation fonts on by default
     4        https://bugs.webkit.org/show_bug.cgi?id=162818
     5
     6        Reviewed by Simon Fraser.
     7
     8        No new tests because there is no behavior change.
     9
     10        * page/Settings.in:
     11        * testing/InternalSettings.cpp:
     12        (WebCore::InternalSettings::variationFontsEnabled):
     13
    1142016-09-30  Myles C. Maxfield  <mmaxfield@apple.com>
    215
  • trunk/Source/WebCore/page/Settings.in

    r206665 r206701  
    274274treatIPAddressAsDomain initial=false
    275275
    276 variationFontsEnabled initial=false, setNeedsStyleRecalcInAllFrames=1
     276variationFontsEnabled initial=true, setNeedsStyleRecalcInAllFrames=1
    277277
    278278# Runtime-enabled features
  • trunk/Source/WebCore/testing/InternalSettings.cpp

    r206665 r206701  
    654654bool InternalSettings::variationFontsEnabled(ExceptionCode& ec)
    655655{
    656     InternalSettingsGuardForSettingsReturn(false);
     656    InternalSettingsGuardForSettingsReturn(true);
    657657    return settings()->variationFontsEnabled();
    658658}
  • trunk/Source/WebKit2/ChangeLog

    r206684 r206701  
     12016-09-30  Myles C. Maxfield  <mmaxfield@apple.com>
     2
     3        Turn variation fonts on by default
     4        https://bugs.webkit.org/show_bug.cgi?id=162818
     5
     6        Reviewed by Simon Fraser.
     7
     8        * Shared/WebPreferencesDefinitions.h:
     9
    1102016-09-30  Brady Eidson  <beidson@apple.com>
    211
  • trunk/Source/WebKit2/Shared/WebPreferencesDefinitions.h

    r206665 r206701  
    292292    macro(GamepadsEnabled, gamepadsEnabled, Bool, bool, false, "Gamepads", "Web Gamepad API support") \
    293293    macro(ModernMediaControlsEnabled, modernMediaControlsEnabled, Bool, bool, false, "Modern Media Controls", "Use modern media controls look") \
    294     macro(VariationFontsEnabled, variationFontsEnabled, Bool, bool, false, "Variation Fonts", "Enable variation fonts") \
     294    macro(VariationFontsEnabled, variationFontsEnabled, Bool, bool, true, "Variation Fonts", "Enable variation fonts") \
    295295    macro(VisualViewportEnabled, visualViewportEnabled, Bool, bool, false, "Visual Viewport", "Use Visual Viewport for fixed elements when zooming") \
    296296    macro(WebGL2Enabled, webGL2Enabled, Bool, bool, true, "WebGL 2.0", "WebGL 2 prototype") \
Note: See TracChangeset for help on using the changeset viewer.