• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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