Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added a test for event sequence after implicit release. #4364

Merged
merged 4 commits into from
Dec 20, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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