Index: third_party/WebKit/LayoutTests/fullscreen/full-screen-remove-ancestor-during-transition.html |
diff --git a/third_party/WebKit/LayoutTests/fullscreen/full-screen-remove-ancestor-during-transition.html b/third_party/WebKit/LayoutTests/fullscreen/full-screen-remove-ancestor-during-transition.html |
deleted file mode 100644 |
index 735c5204d73bcb3cd90b9859d267045c7a4cd43f..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fullscreen/full-screen-remove-ancestor-during-transition.html |
+++ /dev/null |
@@ -1,40 +0,0 @@ |
-<!DOCTYPE html> |
-<script src="../resources/js-test.js"></script> |
-<script> |
-if (window.testRunner) { |
- testRunner.dumpAsText(); |
- testRunner.waitUntilDone(); |
-} |
- |
-function runWithKeyDown(fn) |
-{ |
- document.addEventListener('keydown', function() { fn(); }, false); |
- if (window.testRunner) { |
- eventSender.keyDown('a'); |
- } |
-} |
- |
-function init() { |
- runWithKeyDown(goFullScreen); |
-} |
- |
-function goFullScreen() { |
- var iframe = document.getElementById('block1'); |
- var element = iframe.contentDocument.documentElement; |
- setTimeout(function () { |
- iframe.parentNode.removeChild(iframe); |
- gc(); |
- setTimeout(function () { |
- if (window.testRunner) { |
- testRunner.notifyDone(); |
- } |
- }, 0); |
- }, 0); |
- element.webkitRequestFullScreen(); |
- shouldNotBe("document.webkitFullscreenElement", "null"); |
-} |
-</script> |
-<body onload="init()"> |
- <iframe allowfullscreen src="resources/inner.html" id="block1"></iframe> |
- PASS |
-</body> |