| 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>
|
|
|