| <sky> | |
| <import src="../resources/chai.sky" /> | |
| <import src="../resources/mocha.sky" /> | |
| <script> | |
| describe("Pointer events", function() { | |
| it("should be constructable", function() { | |
| var event = new PointerEvent("pointerdown", { | |
| kind: "touch", | |
| }); | |
| assert.ok(event); | |
| assert.equal(event.kind, "touch"); | |
| assert.equal(event.radiusMajor, 0); | |
| }); | |
| }); | |
| </script> | |
| </sky> |