Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <sky> | |
| 2 <import src="../resources/chai.sky" /> | |
| 3 <import src="../resources/mocha.sky" /> | |
| 4 <script> | |
| 5 describe("Pointer events", function() { | |
| 6 it("should be constructable", function() { | |
| 7 var evt = new PointerEvent("pointerdown", { | |
| 8 kind: "touch", | |
| 9 }); | |
| 10 assert.ok(evt); | |
| 11 assert.equal(evt.kind, "touch"); | |
| 12 assert.equal(evt.radiusMajor, 0); | |
| 13 }); | |
| 14 }); | |
| 15 </script> | |
| 16 </sky> | |
| OLD | NEW |