Commit 4a313063 authored by jer.noble@apple.com's avatar jer.noble@apple.com

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.

git-svn-id: svn://svn.chromium.org/blink/trunk@82052 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent f071eb10
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-25 Andy Estes <aestes@apple.com>
Reviewed by Adele Peterson.
......
......@@ -384,7 +384,7 @@ static bool useQuickLookQuirks(void)
[NSNumber numberWithBool:NO], WebKitFrameFlatteningEnabledPreferenceKey,
[NSNumber numberWithBool:NO], WebKitSpatialNavigationEnabledPreferenceKey,
[NSNumber numberWithBool:NO], WebKitDNSPrefetchingEnabledPreferenceKey,
[NSNumber numberWithBool:NO], WebKitFullScreenEnabledPreferenceKey,
[NSNumber numberWithBool:YES], WebKitFullScreenEnabledPreferenceKey,
[NSNumber numberWithBool:NO], WebKitAsynchronousSpellCheckingEnabledPreferenceKey,
[NSNumber numberWithBool:NO], WebKitMemoryInfoEnabledPreferenceKey,
[NSNumber numberWithBool:YES], WebKitHyperlinkAuditingEnabledPreferenceKey,
......
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.
2011-03-26 Jeff Miller <jeffm@apple.com>
Reviewed by Steve Falkenburg.
......
......@@ -69,7 +69,7 @@ namespace WebKit {
macro(DOMPasteAllowed, domPasteAllowed, Bool, bool, false) \
macro(JavaScriptCanAccessClipboard, javaScriptCanAccessClipboard, Bool, bool, false) \
macro(ShouldPrintBackgrounds, shouldPrintBackgrounds, Bool, bool, false) \
macro(FullScreenEnabled, fullScreenEnabled, Bool, bool, false) \
macro(FullScreenEnabled, fullScreenEnabled, Bool, bool, true) \
macro(WebSecurityEnabled, webSecurityEnabled, Bool, bool, true) \
macro(AllowUniversalAccessFromFileURLs, allowUniversalAccessFromFileURLs, Bool, bool, false) \
macro(AllowFileAccessFromFileURLs, allowFileAccessFromFileURLs, Bool, bool, false) \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment