mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-08 08:48:39 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
|
|
@ -0,0 +1,35 @@
|
|||
<!doctype html>
|
||||
<html>
|
||||
<!--
|
||||
Test cases for Pointer Events v1 spec
|
||||
This document references Test Assertions (abbrev TA below) written by Cathy Chan
|
||||
http://www.w3.org/wiki/PointerEvents/TestAssertions
|
||||
-->
|
||||
<head>
|
||||
<title>Pointer Events pointerdown tests</title>
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<link rel="stylesheet" type="text/css" href="../pointerevent_styles.css">
|
||||
<script>
|
||||
function run() {
|
||||
var target1 = document.getElementById("target1");
|
||||
|
||||
var eventList = ['pointerenter', 'pointerover', 'pointermove', 'pointerout', 'pointerleave'];
|
||||
|
||||
eventList.forEach(function(eventName) {
|
||||
target1.addEventListener(eventName, function (event) {
|
||||
var pass_data = {
|
||||
'pointerId' : event.pointerId,
|
||||
'type' : event.type,
|
||||
'pointerType' : event.pointerType
|
||||
};
|
||||
top.postMessage(JSON.stringify(pass_data), "*");
|
||||
});
|
||||
});
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body onload="run()">
|
||||
<div id="target1" class="touchActionNone">
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue