Title: [97875] trunk
Revision
97875
Author
[email protected]
Date
2011-10-19 14:07:42 -0700 (Wed, 19 Oct 2011)

Log Message

[Qt] Disable fullscreen api on Qt by default
https://bugs.webkit.org/show_bug.cgi?id=70413

Reviewed by Noam Rosenthal.

Source/WebCore: 

As the WebKit side of implementation for fullscreen api feature has not been done yet,
we'd better turn off the feature on the WebCore side by default.

* features.pri:

LayoutTests: 

* platform/qt/Skipped:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (97874 => 97875)


--- trunk/LayoutTests/ChangeLog	2011-10-19 20:34:34 UTC (rev 97874)
+++ trunk/LayoutTests/ChangeLog	2011-10-19 21:07:42 UTC (rev 97875)
@@ -1,3 +1,12 @@
+2011-10-19  Chang Shu  <[email protected]>
+
+        [Qt] Disable fullscreen api on Qt by default
+        https://bugs.webkit.org/show_bug.cgi?id=70413
+
+        Reviewed by Noam Rosenthal.
+
+        * platform/qt/Skipped:
+
 2011-10-18  Kenji Imasaki  <[email protected]>
 
         [Chromium] Update the test expectation file for fullscreen related tests.

Modified: trunk/LayoutTests/platform/qt/Skipped (97874 => 97875)


--- trunk/LayoutTests/platform/qt/Skipped	2011-10-19 20:34:34 UTC (rev 97874)
+++ trunk/LayoutTests/platform/qt/Skipped	2011-10-19 21:07:42 UTC (rev 97875)
@@ -246,29 +246,7 @@
 
 # [Qt] QtWebKit needs fullscreen api support
 # <https://bugs.webkit.org/show_bug.cgi?id=70132>
-fullscreen/full-screen-cancel.html
-fullscreen/full-screen-css.html
-fullscreen/full-screen-frameset.html
-fullscreen/full-screen-iframe-allowed.html
-fullscreen/full-screen-iframe-legacy.html
-fullscreen/full-screen-iframe-zIndex.html
-fullscreen/full-screen-keyboard-disabled.html
-fullscreen/full-screen-keyboard-enabled.html
-fullscreen/full-screen-placeholder.html
-fullscreen/full-screen-remove-ancestor-after.html
-fullscreen/full-screen-remove-ancestor.html
-fullscreen/full-screen-remove-children.html
-fullscreen/full-screen-remove.html
-fullscreen/full-screen-remove-sibling.html
-fullscreen/full-screen-render-inline.html
-fullscreen/full-screen-request.html
-fullscreen/full-screen-stacking-context.html
-fullscreen/full-screen-twice.html
-fullscreen/full-screen-zIndex-after.html
-fullscreen/full-screen-zIndex.html
-fullscreen/parent-flow-inline-with-block-child.html
-fullscreen/video-controls-override.html
-fullscreen/video-specified-size.html
+fullscreen
 plugins/fullscreen-plugins-dont-reload.html
 
 # =========================================================================== #

Modified: trunk/Source/WebCore/ChangeLog (97874 => 97875)


--- trunk/Source/WebCore/ChangeLog	2011-10-19 20:34:34 UTC (rev 97874)
+++ trunk/Source/WebCore/ChangeLog	2011-10-19 21:07:42 UTC (rev 97875)
@@ -1,3 +1,15 @@
+2011-10-19  Chang Shu  <[email protected]>
+
+        [Qt] Disable fullscreen api on Qt by default
+        https://bugs.webkit.org/show_bug.cgi?id=70413
+
+        Reviewed by Noam Rosenthal.
+
+        As the WebKit side of implementation for fullscreen api feature has not been done yet,
+        we'd better turn off the feature on the WebCore side by default.
+
+        * features.pri:
+
 2011-10-19  Dirk Schulze  <[email protected]>
 
         Unreviewed, rolling out r97863.

Modified: trunk/Source/WebCore/features.pri (97874 => 97875)


--- trunk/Source/WebCore/features.pri	2011-10-19 20:34:34 UTC (rev 97874)
+++ trunk/Source/WebCore/features.pri	2011-10-19 21:07:42 UTC (rev 97875)
@@ -175,7 +175,7 @@
     }
 }
 
-!contains(DEFINES, ENABLE_FULLSCREEN_API=.): DEFINES += ENABLE_FULLSCREEN_API=1
+!contains(DEFINES, ENABLE_FULLSCREEN_API=.): DEFINES += ENABLE_FULLSCREEN_API=0
 
 ## Forward enabled feature macros to _javascript_ enabled features macros
 FEATURE_DEFINES_JAVASCRIPT = LANGUAGE_JAVASCRIPT=1
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to