Skip to content

Commit

Permalink
[PointerEvents] Added a test for event sequence after implicit releas…
Browse files Browse the repository at this point in the history
…e. (#4364)

Fixes #142
  • Loading branch information
mustaqahmed authored and RByers committed Dec 20, 2016
1 parent cfd9531 commit d6d2701
Show file tree
Hide file tree
Showing 3 changed files with 171 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
<!doctype html>
<html>
<head>
<title>Pointer Event: Event sequence at implicit release on click</title>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type"/>
<link rel="author" title="Google" href="http://www.google.com "/>
<meta name="assert" content="When a captured pointer is implicitly released after a click, the boundary events should follow the lostpointercapture event."/>
<link rel="stylesheet" type="text/css" href="pointerevent_styles.css">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script type="text/javascript" src="pointerevent_support.js"></script>
<script type="text/javascript">
var detected_pointertypes = {};
var event_log = [];
var start_logging = false;

function resetTestState() {
detected_eventTypes = {};
event_log = [];
start_logging = false;
}

function run() {
var test_pointer_event = setup_pointerevent_test("Event sequence at implicit release on click", ALL_POINTERS);

on_event(document.getElementById("done"), "click", function() {
test_pointer_event.step(function () {
var expected_events = "pointerup, lostpointercapture, pointerout, pointerleave";
assert_equals(event_log.join(", "), expected_events);
});
test_pointer_event.done();
});

var target = document.getElementById("target");

All_Pointer_Events.forEach(function(eventName) {
on_event(target, eventName, function (event) {
detected_pointertypes[event.pointerType] = true;

if (event.type == "pointerdown") {
event.target.setPointerCapture(event.pointerId);

} else if (event.type == "gotpointercapture") {
start_logging = true;

} else if (event.type != "pointermove" && start_logging) {
event_log.push(event.type);
}
});
});
}
</script>
<style>
#target {
margin: 20px;
background-color: black;
}

#done {
margin: 20px;
background-color: green;
}
</style>
</head>
<body onload="run()">
<h1>Pointer Event: Event sequence at implicit release on click<h1>
<h2 id="pointerTypeDescription"></h2>
<h4>
When a captured pointer is implicitly released after a click, the boundary events should follow the lostpointercapture event.
</h4>
<ol>
<li>Click or tap on Black.</li>
<li>Click or tap on Green.</li>
</ol>
<div id="target"></div>
<div id="done"></div>
<div id="complete-notice">
<p>The following pointer types were detected: <span id="pointertype-log"></span>.</p>
<p>The following events were logged: <span id="event-log"></span>.</p>
</div>
<div id="log"></div>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
<!doctype html>
<html>
<head>
<title>Pointer Event: Event sequence at implicit release on drag</title>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type"/>
<link rel="author" title="Google" href="http://www.google.com "/>
<meta name="assert" content="When a captured pointer is implicitly released after a drag, the boundary events should follow the lostpointercapture event."/>
<link rel="stylesheet" type="text/css" href="pointerevent_styles.css">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script type="text/javascript" src="pointerevent_support.js"></script>
<script type="text/javascript">
var detected_pointertypes = {};
var event_log = [];
var start_logging = false;

function resetTestState() {
detected_eventTypes = {};
event_log = [];
start_logging = false;
}

function run() {
var test_pointer_event = setup_pointerevent_test("Event sequence at implicit release on drag", ["touch"]);

on_event(document.getElementById("done"), "click", function() {
test_pointer_event.step(function () {
var expected_events = "pointercancel, lostpointercapture, pointerout, pointerleave";
assert_equals(event_log.join(", "), expected_events);
});
test_pointer_event.done();
});

var target = document.getElementById("target");

All_Pointer_Events.forEach(function(eventName) {
on_event(target, eventName, function (event) {
detected_pointertypes[event.pointerType] = true;

if (event.type == "pointerdown") {
event.target.setPointerCapture(event.pointerId);

} else if (event.type == "gotpointercapture") {
start_logging = true;

} else if (event.type != "pointermove" && start_logging) {
event_log.push(event.type);
}
});
});
}
</script>
<style>
#target {
margin: 20px;
background-color: black;
touch-action: auto;
}

#done {
margin: 20px;
background-color: green;
}
</style>
</head>
<body onload="run()">
<h1>Pointer Event: Event sequence at implicit release on drag<h1>
<h2 id="pointerTypeDescription"></h2>
<h4>
When a captured pointer is implicitly released after a drag, the boundary events should follow the lostpointercapture event.
</h4>
<ol>
<li>Drag quickly down starting on Black.</li>
<li>Click or tap on Green.</li>
</ol>
<div id="target"></div>
<div id="done"></div>
<div id="complete-notice">
<p>The following pointer types were detected: <span id="pointertype-log"></span>.</p>
<p>The following events were logged: <span id="event-log"></span>.</p>
</div>
<div id="log"></div>
</body>
</html>
4 changes: 4 additions & 0 deletions pointerevents/pointerevent_support.js
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,10 @@ MultiPointerTypeTest.prototype.done = function() {
prevTest.done();
}

MultiPointerTypeTest.prototype.step = function(stepFunction) {
this.currentTest.step(stepFunction);
}

MultiPointerTypeTest.prototype.createNextTest = function() {
if (this.currentTypeIndex < this.types.length) {
var pointerTypeDescription = document.getElementById('pointerTypeDescription');
Expand Down

0 comments on commit d6d2701

Please sign in to comment.