diff options
author | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-04-20 19:44:42 +0200 |
---|---|---|
committer | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-04-20 19:44:42 +0200 |
commit | d4feeb474eeedbd9e90356d36bb2ae70dc7808a1 (patch) | |
tree | 03c73160fc244097e1e6ee6795453abbcb02e2e4 /dom/events/test | |
parent | 04c7949bc3da9e02e563436d7d772424c5492a69 (diff) | |
download | UXP-d4feeb474eeedbd9e90356d36bb2ae70dc7808a1.tar UXP-d4feeb474eeedbd9e90356d36bb2ae70dc7808a1.tar.gz UXP-d4feeb474eeedbd9e90356d36bb2ae70dc7808a1.tar.lz UXP-d4feeb474eeedbd9e90356d36bb2ae70dc7808a1.tar.xz UXP-d4feeb474eeedbd9e90356d36bb2ae70dc7808a1.zip |
Bug 1322994 - Update pointerevent web-platform-tests (partially - depends on)
https://github.com/MoonchildProductions/moebius/pull/71
Diffstat (limited to 'dom/events/test')
-rw-r--r-- | dom/events/test/pointerevents/pointerevent_releasepointercapture_events_to_original_target-manual.html | 41 |
1 files changed, 28 insertions, 13 deletions
diff --git a/dom/events/test/pointerevents/pointerevent_releasepointercapture_events_to_original_target-manual.html b/dom/events/test/pointerevents/pointerevent_releasepointercapture_events_to_original_target-manual.html index f4d5573ed..31fe919af 100644 --- a/dom/events/test/pointerevents/pointerevent_releasepointercapture_events_to_original_target-manual.html +++ b/dom/events/test/pointerevents/pointerevent_releasepointercapture_events_to_original_target-manual.html @@ -1,4 +1,4 @@ -<!doctype html> +<!doctype html> <html> <head> <title>Pointer Event: releasePointerCapture() - subsequent events follow normal hitting testing mechanisms</title> @@ -14,17 +14,21 @@ <script type="text/javascript"> var detected_pointertypes = {}; var test_pointerEvent = async_test("lostpointercapture: subsequent events to target."); // set up test harness - var suppressedEventsFail = false; // showPointerTypes is defined in pointerevent_support.js // Requirements: the callback function will reference the test_pointerEvent object and // will fail unless the async_test is created with the var name "test_pointerEvent". add_completion_callback(showPointerTypes); var captured_event; + var test_done = false; + var overEnterEventsFail = false; + var outLeaveEventsFail = false; var f_gotPointerCapture = false; var f_lostPointerCapture = false; function listenerEventHandler(event) { + if (test_done) + return; detected_pointertypes[event.pointerType] = true; if (event.type == "gotpointercapture") { f_gotPointerCapture = true; @@ -35,12 +39,20 @@ f_gotPointerCapture = false; check_PointerEvent(event); } - else if(event.type == "pointerover" || event.type == "pointerenter" || event.type == "pointerout" || event.type == "pointerleave") { - if(!suppressedEventsFail) { + else if(event.type == "pointerover" || event.type == "pointerenter") { + if(!overEnterEventsFail) { test(function() { - assert_true(false, "Suppressed events were received"); - }, "Suppressed events were received"); - suppressedEventsFail = true; + assert_true(f_gotPointerCapture, "pointerover/enter should not be received when the target doesn't have capture and pointer is not over it."); + }, "pointerover/enter should not be received when the target doesn't have capture and pointer is not over it."); + overEnterEventsFail = true; + } + } + else if(event.type == "pointerout" || event.type == "pointerleave") { + if(!outLeaveEventsFail) { + test(function() { + assert_true(f_lostPointerCapture, "pointerout/leave should not be received unless the target just lost the capture."); + }, "pointerout/leave should not be received unless the target just lost the capture."); + outLeaveEventsFail = true; } } else if (event.pointerId == captured_event.pointerId) { @@ -50,19 +62,21 @@ } else { // if any other events are received after releaseCapture, then the test fails - test_pointerEvent.step(function () { - assert_true(false, event.target.id + "-" + event.type + " should be handled by target element handler"); - }); + test(function () { + assert_unreached(event.target.id + "-" + event.type + " should be handled by target element handler"); + }, "No other events should be recieved by capturing node after release"); } } } function targetEventHandler(event) { + if (test_done) + return; if (f_gotPointerCapture) { if(event.type != "pointerout" && event.type != "pointerleave") { - test_pointerEvent.step(function () { - assert_true(false, "The Target element should not have received any events while capture is active. Event recieved:" + event.type + ". "); - }); + test(function () { + assert_unreached("The Target element should not have received any events while capture is active. Event recieved:" + event.type + ". "); + }, "The target element should not receive any events while capture is active"); } } @@ -78,6 +92,7 @@ }); if (event.type == "pointerup") { test_pointerEvent.done(); // complete test + test_done = true; } } } |