summaryrefslogtreecommitdiffstats
path: root/LayoutTests/fast/events/touch/script-tests/document-create-touch-list.js
blob: 9c87c9ad7c771fbc3c089d7e8592a08d73515f59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
description("This tests support for the document.createTouchList API.");

shouldBeTrue('"createTouchList" in document');

var touchList = document.createTouchList();
shouldBeNonNull("touchList");
shouldBe("touchList.length", "0");
shouldBeNull("touchList.item(0)");
shouldBeNull("touchList.item(1)");

successfullyParsed = true;
isSuccessfullyParsed();