document-create-touch-list.js revision 9dfa8dc622519374a57a0b24ab9d7f73afe160ed
1description("This tests support for the document.createTouchList API.");
2
3shouldBeTrue('"createTouchList" in document');
4
5var touchList = document.createTouchList();
6shouldBeNonNull("touchList");
7shouldBe("touchList.length", "0");
8shouldBeNull("touchList.item(0)");
9shouldBeNull("touchList.item(1)");
10
11successfullyParsed = true;
12isSuccessfullyParsed();
13