Index: LayoutTests/fullscreen/full-screen-is-in-top-layer.html |
diff --git a/LayoutTests/fullscreen/full-screen-is-in-top-layer.html b/LayoutTests/fullscreen/full-screen-is-in-top-layer.html |
deleted file mode 100644 |
index 16bbfca14bc6a36b7ea29c2f4d4e43e94a454e18..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fullscreen/full-screen-is-in-top-layer.html |
+++ /dev/null |
@@ -1,40 +0,0 @@ |
-<!doctype html> |
-<html> |
-<head> |
-<style> |
-div { |
- background: yellow; |
- top: 100px; |
- bottom: 100px; |
- left: 100px; |
- right: 100px; |
- height: auto; |
- width: auto; |
-} |
-::backdrop { |
- background: green; |
-} |
-</style> |
-</head> |
-<body> |
-<div>Test that fullscreen elements are in the top layer. The test passes if |
-you see a green backdrop behind this box when fullscreen.</div> |
-<button>Go fullscreen</button> |
-<script> |
-div = document.querySelector('div'); |
-document.querySelector('button').addEventListener('click', function() { |
- div.webkitRequestFullscreen(); |
-}); |
-if (window.testRunner) { |
- testRunner.waitUntilDone(); |
- document.addEventListener('webkitfullscreenchange', function() { |
- setTimeout(function() { |
- testRunner.notifyDone(); |
- }, 0); |
- }); |
- document.addEventListener('keydown', function() { div.webkitRequestFullscreen(); }); |
- eventSender.keyDown('a'); |
-} |
-</script> |
-</body> |
-</html> |