Changeset 82052 in webkit


Ignore:
Timestamp:
Mar 26, 2011 5:03:14 PM (13 years ago)
Author:
jer.noble@apple.com
Message:

2011-03-26 Jer Noble <jer.noble@apple.com>

Reviewed by Eric Carlson.

Enable the Full Screen API by default in WebKit/mac and WebKit2
https://bugs.webkit.org/show_bug.cgi?id=56956

  • WebView/WebPreferences.mm: (+[WebPreferences initialize]): Default the WebKitFullScreenEnabled preference to true.

2011-03-26 Jer Noble <jer.noble@apple.com>

Reviewed by Eric Carlson.

Enable the Full Screen API by default in WebKit/mac and WebKit2
https://bugs.webkit.org/show_bug.cgi?id=56956

  • Shared/WebPreferencesStore.h: Default the fullScreenEnabled preference to true.
Location:
trunk/Source
Files:
4 edited

Legend:

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

    r82001 r82052  
     12011-03-26  Jer Noble  <jer.noble@apple.com>
     2
     3        Reviewed by Eric Carlson.
     4
     5        Enable the Full Screen API by default in WebKit/mac and WebKit2
     6        https://bugs.webkit.org/show_bug.cgi?id=56956
     7
     8        * WebView/WebPreferences.mm:
     9        (+[WebPreferences initialize]): Default the WebKitFullScreenEnabled preference to true.
     10
    1112011-03-25  Andy Estes  <aestes@apple.com>
    212
  • trunk/Source/WebKit/mac/WebView/WebPreferences.mm

    r81635 r82052  
    385385        [NSNumber numberWithBool:NO],   WebKitSpatialNavigationEnabledPreferenceKey,
    386386        [NSNumber numberWithBool:NO],  WebKitDNSPrefetchingEnabledPreferenceKey,
    387         [NSNumber numberWithBool:NO],   WebKitFullScreenEnabledPreferenceKey,
     387        [NSNumber numberWithBool:YES],  WebKitFullScreenEnabledPreferenceKey,
    388388        [NSNumber numberWithBool:NO],   WebKitAsynchronousSpellCheckingEnabledPreferenceKey,
    389389        [NSNumber numberWithBool:NO],   WebKitMemoryInfoEnabledPreferenceKey,
  • trunk/Source/WebKit2/ChangeLog

    r82049 r82052  
     12011-03-26  Jer Noble  <jer.noble@apple.com>
     2
     3        Reviewed by Eric Carlson.
     4
     5        Enable the Full Screen API by default in WebKit/mac and WebKit2
     6        https://bugs.webkit.org/show_bug.cgi?id=56956
     7
     8        * Shared/WebPreferencesStore.h: Default the fullScreenEnabled preference to true.
     9
    1102011-03-26  Jeff Miller  <jeffm@apple.com>
    211
  • trunk/Source/WebKit2/Shared/WebPreferencesStore.h

    r81602 r82052  
    7070    macro(JavaScriptCanAccessClipboard, javaScriptCanAccessClipboard, Bool, bool, false) \
    7171    macro(ShouldPrintBackgrounds, shouldPrintBackgrounds, Bool, bool, false) \
    72     macro(FullScreenEnabled, fullScreenEnabled, Bool, bool, false) \
     72    macro(FullScreenEnabled, fullScreenEnabled, Bool, bool, true) \
    7373    macro(WebSecurityEnabled, webSecurityEnabled, Bool, bool, true) \
    7474    macro(AllowUniversalAccessFromFileURLs, allowUniversalAccessFromFileURLs, Bool, bool, false) \
Note: See TracChangeset for help on using the changeset viewer.