| <script src="../http/tests/resources/js-test-pre.js"></script> |
| <script src="../http/tests/resources/pointer-lock/pointer-lock-test-harness.js"></script> |
| description("Test locking an element not in a document is rejected and pointerlockerror event dispatched.") |
| window.jsTestIsAsync = true; |
| targetDiv1 = document.getElementById("target1"); |
| shouldNotBe("targetDiv1.parentElement", "null"); |
| expectOnlyErrorEvent("Remove targetDiv1 from document, and try to lock it."); |
| targetDiv1.parentElement.removeChild(targetDiv1); |
| shouldBe("targetDiv1.parentElement", "null"); |
| targetDiv1.requestPointerLock(); |
| // doNextStep called by event handler. |
| doNextStepWithUserGesture(); |
| <script src="../http/tests/resources/js-test-post.js"></script> |