Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(86)

Unified Diff: third_party/WebKit/LayoutTests/external/wpt/pointerevents/pointerlock/pointerevent_pointerlock_after_pointercapture-manual.html

Issue 2807433003: No pointer captured when the pointer lock is applied (Closed)
Patch Set: pointer lock Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/external/wpt/pointerevents/pointerlock/pointerevent_pointerlock_after_pointercapture-manual.html
diff --git a/third_party/WebKit/LayoutTests/external/wpt/pointerevents/pointerlock/pointerevent_pointerlock_after_pointercapture-manual.html b/third_party/WebKit/LayoutTests/external/wpt/pointerevents/pointerlock/pointerevent_pointerlock_after_pointercapture-manual.html
new file mode 100644
index 0000000000000000000000000000000000000000..92fe7f26a796020f4530f4b4cd0794353a355d2f
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/external/wpt/pointerevents/pointerlock/pointerevent_pointerlock_after_pointercapture-manual.html
@@ -0,0 +1,69 @@
+<!doctype html>
+<html>
+ <head>
+ <title>Pointer Events pointer lock test</title>
+ <meta name="viewport" content="width=device-width">
+ <link rel="stylesheet" type="text/css" href="../pointerevent_styles.css">
+ <script src="/resources/testharness.js"></script>
+ <script src="/resources/testharnessreport.js"></script>
+ <!-- Additional helper script for common checks across event types -->
+ <script type="text/javascript" src="../pointerevent_support.js"></script>
+ <script>
+ var got_capture = false;
+ var lost_capture = false;
+ var lock_requested = false;
+
+ function resetTestState() {
+ }
+
+ function run() {
+ var test_pointerEvent = setup_pointerevent_test("no pointercapture while pointerlock", ['mouse']);
+ var div1 = document.getElementById("div1");
+ var div2 = document.getElementById("div2");
+
+ on_event(div1, 'pointerdown', function(event) {
+ div2.setPointerCapture(event.pointerId);
+ });
+ on_event(div1, 'pointermove', function(event) {
+ if (lost_capture) {
+ test_pointerEvent.step(function() {
+ assert_equals(document.pointerLockElement, div1, "document.pointerLockElement should be div1.");
+ assert_true(lost_capture, "Pointer capture was lost after got a pointer lock.");
+ });
+ test_pointerEvent.done();
+ }
+ });
+ on_event(div2, 'pointermove', function(event) {
+ if (got_capture && !lock_requested) {
+ div1.requestPointerLock();
+ lock_requested = true;
+ }
+ });
+ on_event(div2, 'gotpointercapture', function(event) {
+ got_capture = true;
+ });
+ on_event(div2, 'lostpointercapture', function(event) {
+ lost_capture = true;
+ });
+ }
+ </script>
+ </head>
+ <body onload="run()">
+ <h1>Pointer Events pointer lock test</h1>
+ <h2 id="pointerTypeDescription"></h2>
+ <h4>
+ Test Description: This test checks that we release the exsiting pointer capture when any element in the page gets a pointer lock.
+ <ol>
+ <li>Press left button down on the green rectangle and hold it.</li>
+ <li>Move the mouse inside the green rectangle.</li>
+ </ol>
+
+ Test passes if the pointer capture is released on the yellow rectangle when the green rectangle gets the pointer lock.
+ </h4>
+ <div id="testContainer">
+ <div id="div1" style="width:800px;height:250px;background:green"></div>
+ <div id="div2" style="width:800px;height:250px;background:yellow"></div>
+ </div>
+ <div class="spacer"></div>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698