Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(16)

Unified Diff: LayoutTests/fullscreen/full-screen-cancel-nested.html

Issue 434903002: Make webkitCancelFullScreen() an alias of webkitExitFullscreen() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: polish test Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/fullscreen/full-screen-cancel-nested-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fullscreen/full-screen-cancel-nested.html
diff --git a/LayoutTests/fullscreen/full-screen-cancel-nested.html b/LayoutTests/fullscreen/full-screen-cancel-nested.html
new file mode 100644
index 0000000000000000000000000000000000000000..51a9a01dbf3c2f45d1b9d6567ef0b20dd3cfda77
--- /dev/null
+++ b/LayoutTests/fullscreen/full-screen-cancel-nested.html
@@ -0,0 +1,44 @@
+<!DOCTYPE html>
+<script src="full-screen-test.js"></script>
+<p>Test that webkitCancelFullScreen only exits one level of fullscreen</p>
+<div><span></span></div>
+<script>
+ // Bail out early if the full screen API is not enabled or is missing:
+ if (Element.prototype.webkitRequestFullScreen == undefined) {
+ logResult(false, "Element.prototype.webkitRequestFullScreen == undefined");
+ endTest();
+ } else {
+ var callback;
+ function fullscreenChanged(event)
+ {
+ if (callback)
+ callback(event)
+ };
+ waitForEvent(document, "webkitfullscreenchange", fullscreenChanged);
+
+ var div = document.querySelector("div");
+ function divEnteredFullScreen()
+ {
+ testExpected("document.webkitCurrentFullScreenElement", div);
+ callback = spanEnteredFullScreen;
+ runWithKeyDown(function() { span.webkitRequestFullScreen(); });
+ };
+
+ var span = document.querySelector("span");
+ function spanEnteredFullScreen()
+ {
+ testExpected("document.webkitCurrentFullScreenElement", span);
+ callback = cancelledFullScreen;
+ document.webkitCancelFullScreen();
+ };
+
+ function cancelledFullScreen()
+ {
+ testExpected("document.webkitCurrentFullScreenElement", div);
+ endTest();
+ };
+
+ callback = divEnteredFullScreen;
+ runWithKeyDown(function() { div.webkitRequestFullScreen(); });
+ }
+</script>
« no previous file with comments | « no previous file | LayoutTests/fullscreen/full-screen-cancel-nested-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698