Home
last modified time | relevance | path

Searched refs:createTouch (Results 1 – 8 of 8) sorted by relevance

/external/webkit/LayoutTests/fast/events/touch/script-tests/
Ddocument-create-touch.js12 var touch = document.createTouch(window, target, 1, 100, 101, 102, 103);
21 var emptyTouch = document.createTouch();
31 var badParamsTouch = document.createTouch(function(x) { return x; }, 12, 'a', 'b', 'c', function(x)…
Ddocument-create-touch-list-crash.js10 var t = document.createTouch(window, document.body, 12341, 60, 65, 100, 105);
11 var t2 = document.createTouch(window, document.body, 12342, 50, 55, 115, 120);
Ddocument-create-touch-list.js14 var t = document.createTouch(window, document.body, 12341, 60, 65, 100, 105);
15 var t2 = document.createTouch(window, document.body, 12342, 50, 55, 115, 120);
/external/webkit/LayoutTests/fast/events/touch/
Ddocument-create-touch-expected.txt1 This tests support for the document.createTouch API.
6 PASS "createTouch" in document is true
/external/webkit/Source/WebCore/dom/
DDocument.idl327 [ReturnsNew, EnabledAtRuntime] Touch createTouch(in DOMWindow window,
DDocument.h1082 …PassRefPtr<Touch> createTouch(DOMWindow*, EventTarget*, int identifier, int pageX, int pageY, int …
DDocument.cpp5053 PassRefPtr<Touch> Document::createTouch(DOMWindow* window, EventTarget* target, int identifier, int… in createTouch() function in WebCore::Document
/external/webkit/Source/WebCore/
DChangeLog-2010-12-0614287 document.createTouch and document.createTouchList should specify EnabledAtRuntime
14290 The createTouch and createTouchList APIs added to Document.idl in
30887 Missing support for document.createTouch and document.createTouchList
30905 (WebCore::Document::createTouch):
30908 * dom/Document.idl: Add createTouch and createTouchList functions.