Home | History | Annotate | Download | only in script-tests

Lines Matching refs:div1

4 var div1 = document.createElement("div");
5 div1.id = "targetA";
6 div1.style.width = "100px";
7 div1.style.height = "100px";
8 div1.style.backgroundColor = "blue";
17 targetsDiv.appendChild(div1);
29 shouldBeEqualToString('event.touches[0].target.id', div1.id);
34 shouldBeEqualToString('event.touches[1].target.id', div1.id);
54 shouldBeEqualToString('event.touches[0].target.id', div1.id);
59 shouldBeEqualToString('event.touches[1].target.id', div1.id);
74 div1.addEventListener("touchstart", declareTouchStart(), false);
75 div1.addEventListener("touchmove", declareTouchMove(), false);