| Index: tools/dom/templates/html/impl/impl_TouchEvent.darttemplate
|
| diff --git a/tools/dom/templates/html/impl/impl_TouchEvent.darttemplate b/tools/dom/templates/html/impl/impl_TouchEvent.darttemplate
|
| index 0a6816b7102eacc36e958ef9cc4c627bcf3b36c4..af426b530e356607a58cbd32742a0871d055aa7f 100644
|
| --- a/tools/dom/templates/html/impl/impl_TouchEvent.darttemplate
|
| +++ b/tools/dom/templates/html/impl/impl_TouchEvent.darttemplate
|
| @@ -15,8 +15,8 @@ $(ANNOTATIONS)$(CLASS_MODIFIERS)class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
|
| if (view == null) {
|
| view = window;
|
| }
|
| - var e = document.$dom_createEvent("TouchEvent");
|
| - e.$dom_initTouchEvent(touches, targetTouches, changedTouches, type, view,
|
| + var e = document._createEvent("TouchEvent");
|
| + e._initTouchEvent(touches, targetTouches, changedTouches, type, view,
|
| screenX, screenY, clientX, clientY, ctrlKey, altKey, shiftKey, metaKey);
|
| return e;
|
| }
|
|
|