HomeSort by relevance Sort by last modified time
    Searched defs:div2 (Results 1 - 3 of 3) sorted by null

  /external/webkit/LayoutTests/fast/events/touch/script-tests/
multi-touch-grouped-targets.js 10 var div2 = document.createElement("div"); variable
11 div2.id = "targetB";
12 div2.style.width = "100px";
13 div2.style.height = "100px";
14 div2.style.backgroundColor = "green";
19 targetsDiv.appendChild(div2);
61 div2.addEventListener("touchstart", declareTouchHandler('targetB', '1'), false);
62 div2.addEventListener("touchmove", declareTouchHandler('targetB', '1'), false);
63 div2.addEventListener("touchend", touchEndHandler, false);
touch-target-limited.js 10 var div2 = document.createElement("div"); variable
11 div2.id = "targetB";
12 div2.style.width = "100px";
13 div2.style.height = "100px";
14 div2.style.backgroundColor = "green";
19 targetsDiv.appendChild(div2);
30 shouldBeEqualToString('event.touches[1].target.id', div2.id);
33 shouldBeEqualToString('event.touches[0].target.id', div2.id);
55 shouldBeEqualToString('event.touches[1].target.id', div2.id);
58 shouldBeEqualToString('event.touches[0].target.id', div2.id)
    [all...]
touch-target.js 10 var div2 = document.createElement("div"); variable
11 div2.id = "targetB";
12 div2.style.width = "100px";
13 div2.style.height = "100px";
14 div2.style.backgroundColor = "green";
19 targetsDiv.appendChild(div2);
30 shouldBeEqualToString('event.touches[1].target.id', div2.id);
33 shouldBeEqualToString('event.touches[0].target.id', div2.id);
55 shouldBeEqualToString('event.touches[1].target.id', div2.id);
58 shouldBeEqualToString('event.touches[0].target.id', div2.id)
    [all...]

Completed in 269 milliseconds