HomeSort by relevance Sort by last modified time
    Searched full:createtouchlist (Results 1 - 6 of 6) sorted by null

  /external/webkit/LayoutTests/fast/events/touch/script-tests/
document-create-touch-list-crash.js 1 description("This test ensures that WebKit doesn't crash when the document.createTouchList API is called with non-Touch parameters");
3 shouldBeNull('document.createTouchList(document).item(0)');
4 shouldBeNull('document.createTouchList({"a":1}).item(0)');
5 shouldBeNull('document.createTouchList(new Array(5)).item(0)');
6 shouldBeNull('document.createTouchList("string").item(0)');
7 shouldBeNull('document.createTouchList(null).item(0)');
8 shouldBeNull('document.createTouchList(undefined).item(0)');
12 var tl = document.createTouchList(t, document, t2);
document-create-touch-list.js 1 description("This tests support for the document.createTouchList API.");
3 shouldBeTrue('"createTouchList" in document');
5 // Test createTouchList with no arguments.
6 var touchList = document.createTouchList();
12 // Test createTouchList with Touch objects as arguments.
16 var tl = document.createTouchList(t, t2);
35 // Test createTouchList with invalid arguments which throws exceptions.
37 var tl = document.createTouchList(1, 2);
  /external/webkit/LayoutTests/fast/events/touch/
document-create-touch-list-crash-expected.txt 1 This test ensures that WebKit doesn't crash when the document.createTouchList API is called with non-Touch parameters
6 PASS document.createTouchList(document).item(0) is null
7 PASS document.createTouchList({"a":1}).item(0) is null
8 PASS document.createTouchList(new Array(5)).item(0) is null
9 PASS document.createTouchList("string").item(0) is null
10 PASS document.createTouchList(null).item(0) is null
11 PASS document.createTouchList(undefined).item(0) is null
document-create-touch-list-expected.txt 1 This tests support for the document.createTouchList API.
6 PASS "createTouchList" in document is true
  /external/webkit/Source/WebCore/bindings/js/
JSDocumentCustom.cpp 129 JSValue JSDocument::createTouchList(ExecState* exec)
  /external/webkit/Source/WebCore/dom/
Document.idl 335 [ReturnsNew, EnabledAtRuntime, Custom] TouchList createTouchList()

Completed in 117 milliseconds