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

Unified Diff: third_party/WebKit/LayoutTests/fullscreen/api/element-request-fullscreen-and-move.html

Issue 2573773002: Sync requestFullscreen() and exitFullscreen() algorithms with the spec (Closed)
Patch Set: address feedback 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/fullscreen/api/element-request-fullscreen-and-move.html
diff --git a/third_party/WebKit/LayoutTests/fullscreen/api/element-request-fullscreen-and-move.html b/third_party/WebKit/LayoutTests/fullscreen/api/element-request-fullscreen-and-move.html
deleted file mode 100644
index 5189566b4e6a3baca76c6a65a640f9c131142850..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fullscreen/api/element-request-fullscreen-and-move.html
+++ /dev/null
@@ -1,27 +0,0 @@
-<!DOCTYPE html>
-<title>Element#requestFullscreen() followed by moving the element within the document</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="target"></div>
-<div id="moveto"></div>
-<script>
-// Adapted from https://github.com/w3c/web-platform-tests/pull/4250
-// TODO(foolip): Remove this test when the above is imported and passing.
-async_test(t => {
- const target = document.getElementById("target");
- const moveTo = document.getElementById("moveto");
-
- document.onfullscreenchange = t.step_func_done(() => {
- assert_equals(document.fullscreenElement, null);
- assert_equals(target.parentNode, moveTo);
- });
- document.onfullscreenerror = t.unreached_func("fullscreenchange event");
-
- trusted_click(t.step_func(() => {
- target.requestFullscreen();
- moveTo.appendChild(target);
- }), document.body);
-});
-</script>

Powered by Google App Engine
This is Rietveld 408576698