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

Unified Diff: LayoutTests/fullscreen/model/fully-exit-fullscreen-nested-iframe.html

Issue 470723002: Sync "fully exit fullscreen" with the spec (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: test with window.open() 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
Index: LayoutTests/fullscreen/model/fully-exit-fullscreen-nested-iframe.html
diff --git a/LayoutTests/fullscreen/model/fully-exit-fullscreen-nested-iframe.html b/LayoutTests/fullscreen/model/fully-exit-fullscreen-nested-iframe.html
new file mode 100644
index 0000000000000000000000000000000000000000..5109c36e8694a5ae4e08ba50fd4b986079f06b70
--- /dev/null
+++ b/LayoutTests/fullscreen/model/fully-exit-fullscreen-nested-iframe.html
@@ -0,0 +1,40 @@
+<!DOCTYPE html>
+<title>Fully exit fullscreen with two elements on stack and iframe</title>
+<script src="../../resources/testharness.js"></script>
+<script src="../../resources/testharnessreport.js"></script>
+<script src="../trusted-event.js"></script>
+<script src="fully-exit-fullscreen.js"></script>
+<div id="log"></div>
+<div>
+ <iframe allowfullscreen></iframe>
+</div>
+<script>
+async_test(function(t)
+{
+ var iframe = document.querySelector("iframe");
+ var iframeDocument = iframe.contentDocument;
+ var iframeBody = iframeDocument.body;
+ var div = iframe.parentNode;
+ trusted_request(div);
+ document.onfullscreenchange = t.step_func(function()
+ {
+ assert_equals(document.fullscreenElement, div);
+ assert_equals(iframeDocument.fullscreenElement, null);
+ trusted_request(iframeBody, div);
+ document.onfullscreenchange = null;
+ iframeDocument.onfullscreenchange = t.step_func(function()
+ {
+ assert_equals(document.fullscreenElement, iframe);
+ assert_equals(iframeDocument.fullscreenElement, iframeBody);
+ trusted_event(fully_exit_fullscreen.bind(null, iframeDocument), iframeBody);
+ iframeDocument.onfullscreenchange = null;
+ document.onfullscreenchange = t.step_func(function()
+ {
+ assert_equals(document.fullscreenElement, null);
+ assert_equals(iframe.contentDocument.fullscreenElement, null);
+ t.done();
+ });
+ });
+ });
+});
+</script>

Powered by Google App Engine
This is Rietveld 408576698