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

Unified Diff: third_party/WebKit/LayoutTests/imported/wpt/fullscreen/api/element-request-fullscreen-two-iframes-manual.html

Issue 2572333003: Import wpt@4970d7334aaf8977c5b617075aa48be1b6e482c7 (Closed)
Patch Set: Update TestExpectations Created 4 years 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: third_party/WebKit/LayoutTests/imported/wpt/fullscreen/api/element-request-fullscreen-two-iframes-manual.html
diff --git a/third_party/WebKit/LayoutTests/imported/wpt/fullscreen/api/element-request-fullscreen-two-iframes-manual.html b/third_party/WebKit/LayoutTests/imported/wpt/fullscreen/api/element-request-fullscreen-two-iframes-manual.html
new file mode 100644
index 0000000000000000000000000000000000000000..60a880efd3bdcbe4a2367665d8df47486a58f5f3
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/imported/wpt/fullscreen/api/element-request-fullscreen-two-iframes-manual.html
@@ -0,0 +1,36 @@
+<!DOCTYPE html>
+<title>Element#requestFullscreen() on two elements in different iframes</title>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script src="../trusted-click.js"></script>
+<div id="log"></div>
+<iframe id="a" allowfullscreen></iframe>
+<iframe id="b" allowfullscreen></iframe>
+<script>
+async_test(t => {
+ // Request fullscreen on the body elements of both iframes, but in reverse
+ // tree order.
+ const a = document.getElementById('a');
+ const b = document.getElementById('b');
+
+ // Expect two fullscreenchange events, with document.fullscreenElement
+ // changing in the same order as the requests. (Events should also fire on the
+ // iframes' documents, but this is not covered by this test.)
+ const order = [];
+ document.onfullscreenchange = t.step_func(() => {
+ assert_in_array(document.fullscreenElement, [a, b]);
+ order.push(document.fullscreenElement.id);
+ if (order.length == 2) {
+ assert_array_equals(order, ['b', 'a'],
+ 'fullscreenElement IDs in fullscreenchange events');
+ t.done();
+ }
+ });
+ document.onfullscreenerror = t.unreached_func('fullscreenerror event');
+
+ trusted_click(t.step_func(() => {
+ b.contentDocument.body.requestFullscreen();
+ a.contentDocument.body.requestFullscreen();
+ }), document.body);
+});
+</script>

Powered by Google App Engine
This is Rietveld 408576698