Index: LayoutTests/pointer-lock/pointerlockelement-null-when-pending-prefixed.html |
diff --git a/LayoutTests/pointer-lock/pointerlockelement-null-when-pending-prefixed.html b/LayoutTests/pointer-lock/pointerlockelement-null-when-pending-prefixed.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..859f27f13b57482cd98c71fad0b9db89cb6830d1 |
--- /dev/null |
+++ b/LayoutTests/pointer-lock/pointerlockelement-null-when-pending-prefixed.html |
@@ -0,0 +1,45 @@ |
+<!DOCTYPE HTML> |
+<html> |
+<head> |
+<script src="../resources/js-test.js"></script> |
+<script src="../http/tests/resources/pointer-lock/pointer-lock-test-harness-prefixed.js"></script> |
+</head> |
+<body> |
+<div> |
+ <div id="target1"></div> |
+</div> |
+<script> |
+ description("Test pointerLockElement is null when a lock is pending.") |
+ window.jsTestIsAsync = true; |
+ |
+ targetDiv1 = document.getElementById("target1"); |
+ |
+ todo = [ |
+ function () { |
+ shouldBe("document.webkitPointerLockElement", "null"); |
+ testRunner.setPointerLockWillRespondAsynchronously(); |
+ expectOnlyChangeEvent("Lock."); |
+ targetDiv1.webkitRequestPointerLock(); |
+ doNextStep(); |
+ }, |
+ function () { |
+ shouldBe("document.webkitPointerLockElement", "null"); |
+ testRunner.didAcquirePointerLock(); |
+ // doNextStep called from event handler set with expect... |
+ }, |
+ function () { |
+ shouldBe("document.webkitPointerLockElement", "targetDiv1"); |
+ expectOnlyChangeEvent("Unlock."); |
+ document.webkitExitPointerLock(); |
+ shouldBe("document.webkitPointerLockElement", "targetDiv1"); |
+ // doNextStep called from event handler set with expect... |
+ }, |
+ function () { |
+ shouldBe("document.webkitPointerLockElement", "null"); |
+ doNextStep(); |
+ }, |
+ ]; |
+ doNextStep(); |
+</script> |
+</body> |
+</html> |