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

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

Issue 2654083006: Revert of Sync requestFullscreen() and exitFullscreen() algorithms with the spec (Closed)
Patch Set: add failing test expectations Created 3 years, 11 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: third_party/WebKit/LayoutTests/fullscreen/api/element-request-fullscreen-and-remove-prefixed.html
diff --git a/third_party/WebKit/LayoutTests/fullscreen/api/element-request-fullscreen-and-remove-prefixed.html b/third_party/WebKit/LayoutTests/fullscreen/api/element-request-fullscreen-and-remove-prefixed.html
deleted file mode 100644
index 62a78e6c5a528cb57d0e183738f4db0cf419dd7e..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fullscreen/api/element-request-fullscreen-and-remove-prefixed.html
+++ /dev/null
@@ -1,23 +0,0 @@
-<!DOCTYPE html>
-<title>Element#webkitRequestFullscreen() followed by removing the 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="target"></div>
-<script>
-async_test(t => {
- const target = document.getElementById("target");
-
- document.onwebkitfullscreenchange = t.unreached_func("webkitfullscreenchange event");
- document.onwebkitfullscreenerror = t.step_func_done(event => {
- assert_equals(event.target, document);
- assert_equals(document.webkitFullscreenElement, null);
- });
-
- trusted_click(t.step_func(() => {
- target.webkitRequestFullscreen();
- target.remove();
- }), document.body);
-});
-</script>

Powered by Google App Engine
This is Rietveld 408576698