Index: LayoutTests/http/tests/pointer-lock/iframe-sandboxed-allow-pointer-lock-prefixed.html |
diff --git a/LayoutTests/http/tests/pointer-lock/iframe-sandboxed-allow-pointer-lock-prefixed.html b/LayoutTests/http/tests/pointer-lock/iframe-sandboxed-allow-pointer-lock-prefixed.html |
deleted file mode 100644 |
index 6c062e70828176617282cc9f319acad2abfd2641..0000000000000000000000000000000000000000 |
--- a/LayoutTests/http/tests/pointer-lock/iframe-sandboxed-allow-pointer-lock-prefixed.html |
+++ /dev/null |
@@ -1,33 +0,0 @@ |
-<!DOCTYPE HTML> |
-<html> |
-<head> |
-<script src="/js-test-resources/js-test.js"></script> |
-<script src="../resources/pointer-lock/pointer-lock-test-harness-prefixed.js"></script> |
-</head> |
-<body> |
-<div> |
- <div id="target1"></div> |
- <iframe src="../resources/pointer-lock/inner-iframe-prefixed.html" sandbox="allow-pointer-lock allow-scripts" onload="doNextStepWithUserGesture()"></iframe> |
-</div> |
-<script> |
- description("Test sandboxed iframe with allow-pointer-lock allows pointer lock."); |
- window.jsTestIsAsync = true; |
- |
- targetDiv1 = document.getElementById("target1"); |
- iframe = document.getElementsByTagName("iframe")[0]; |
- |
- todo = [ |
- function () { |
- iframe.contentWindow.postMessage(["eval", 'document.body.webkitRequestPointerLock()'], "*"); |
- window.onmessage = function (messageEvent) { |
- message = messageEvent.data; |
- shouldBeEqualToString("message", "inner-iframe-prefixed.html onwebkitpointerlockchange, document.webkitPointerLockElement = [object HTMLBodyElement]"); |
- window.onmessage = null; |
- doNextStep(); |
- } |
- }, |
- ]; |
- // doNextStep() called by iframe onload handler. |
-</script> |
-</body> |
-</html> |