summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/fullscreen/model
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /testing/web-platform/tests/fullscreen/model
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'testing/web-platform/tests/fullscreen/model')
-rw-r--r--testing/web-platform/tests/fullscreen/model/remove-child-manual.html28
-rw-r--r--testing/web-platform/tests/fullscreen/model/remove-first-manual.html32
-rw-r--r--testing/web-platform/tests/fullscreen/model/remove-last-manual.html32
-rw-r--r--testing/web-platform/tests/fullscreen/model/remove-parent-manual.html26
-rw-r--r--testing/web-platform/tests/fullscreen/model/remove-single-manual.html24
5 files changed, 142 insertions, 0 deletions
diff --git a/testing/web-platform/tests/fullscreen/model/remove-child-manual.html b/testing/web-platform/tests/fullscreen/model/remove-child-manual.html
new file mode 100644
index 000000000..63cc727fb
--- /dev/null
+++ b/testing/web-platform/tests/fullscreen/model/remove-child-manual.html
@@ -0,0 +1,28 @@
+<!DOCTYPE html>
+<title>Remove the child of the fullscreen element</title>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script src="../trusted-click.js"></script>
+<div id="log"></div>
+<div id="parent">
+ <div></div>
+</div>
+<script>
+async_test(function(t)
+{
+ var parent = document.getElementById("parent");
+ trusted_request(parent);
+ document.onfullscreenchange = t.step_func(function()
+ {
+ assert_equals(document.fullscreenElement, parent);
+ parent.textContent = ""; // removes all children
+ document.onfullscreenchange = t.unreached_func("fullscreenchange event");
+ // A fullscreenchange event would be fired after an async section
+ // and an animation frame task, so wait until after that.
+ t.step_timeout(function()
+ {
+ requestAnimationFrame(t.step_func_done());
+ }, 0);
+ });
+});
+</script>
diff --git a/testing/web-platform/tests/fullscreen/model/remove-first-manual.html b/testing/web-platform/tests/fullscreen/model/remove-first-manual.html
new file mode 100644
index 000000000..5873a1cfc
--- /dev/null
+++ b/testing/web-platform/tests/fullscreen/model/remove-first-manual.html
@@ -0,0 +1,32 @@
+<!DOCTYPE html>
+<title>Remove the first element on the fullscreen element stack</title>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script src="../trusted-click.js"></script>
+<div id="log"></div>
+<div id="first">
+ <div id="last"></div>
+</div>
+<script>
+async_test(function(t)
+{
+ var first = document.getElementById("first");
+ trusted_request(first);
+ document.onfullscreenchange = t.step_func(function()
+ {
+ assert_equals(document.fullscreenElement, first);
+ var last = document.getElementById("last");
+ trusted_request(last);
+ document.onfullscreenchange = t.step_func(function()
+ {
+ assert_equals(document.fullscreenElement, last);
+ first.remove();
+ document.onfullscreenchange = t.step_func(function()
+ {
+ assert_equals(document.fullscreenElement, null);
+ t.done();
+ });
+ });
+ });
+});
+</script>
diff --git a/testing/web-platform/tests/fullscreen/model/remove-last-manual.html b/testing/web-platform/tests/fullscreen/model/remove-last-manual.html
new file mode 100644
index 000000000..3e5204962
--- /dev/null
+++ b/testing/web-platform/tests/fullscreen/model/remove-last-manual.html
@@ -0,0 +1,32 @@
+<!DOCTYPE html>
+<title>Remove the last element on the fullscreen element stack</title>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script src="../trusted-click.js"></script>
+<div id="log"></div>
+<div id="first">
+ <div id="last"></div>
+</div>
+<script>
+async_test(function(t)
+{
+ var first = document.getElementById("first");
+ trusted_request(first);
+ document.onfullscreenchange = t.step_func(function()
+ {
+ assert_equals(document.fullscreenElement, first);
+ var last = document.getElementById("last");
+ trusted_request(last);
+ document.onfullscreenchange = t.step_func(function()
+ {
+ assert_equals(document.fullscreenElement, last);
+ last.remove();
+ document.onfullscreenchange = t.step_func(function()
+ {
+ assert_equals(document.fullscreenElement, first);
+ t.done();
+ });
+ });
+ });
+});
+</script>
diff --git a/testing/web-platform/tests/fullscreen/model/remove-parent-manual.html b/testing/web-platform/tests/fullscreen/model/remove-parent-manual.html
new file mode 100644
index 000000000..74327637e
--- /dev/null
+++ b/testing/web-platform/tests/fullscreen/model/remove-parent-manual.html
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<title>Remove the parent of the fullscreen element</title>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script src="../trusted-click.js"></script>
+<div id="log"></div>
+<div>
+ <div id="child"></div>
+</div>
+<script>
+async_test(function(t)
+{
+ var child = document.getElementById("child");
+ trusted_request(child);
+ document.onfullscreenchange = t.step_func(function()
+ {
+ assert_equals(document.fullscreenElement, child);
+ child.parentNode.remove();
+ document.onfullscreenchange = t.step_func(function()
+ {
+ assert_equals(document.fullscreenElement, null);
+ t.done();
+ });
+ });
+});
+</script>
diff --git a/testing/web-platform/tests/fullscreen/model/remove-single-manual.html b/testing/web-platform/tests/fullscreen/model/remove-single-manual.html
new file mode 100644
index 000000000..53abb5e82
--- /dev/null
+++ b/testing/web-platform/tests/fullscreen/model/remove-single-manual.html
@@ -0,0 +1,24 @@
+<!DOCTYPE html>
+<title>Remove the single element on the fullscreen element stack</title>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script src="../trusted-click.js"></script>
+<div id="log"></div>
+<div id="single"></div>
+<script>
+async_test(function(t)
+{
+ var single = document.getElementById("single");
+ document.onfullscreenchange = t.step_func(function()
+ {
+ assert_equals(document.fullscreenElement, single);
+ single.remove();
+ document.onfullscreenchange = t.step_func(function()
+ {
+ assert_equals(document.fullscreenElement, null);
+ t.done();
+ });
+ });
+ trusted_request(single);
+});
+</script>