| Index: third_party/WebKit/LayoutTests/inspector-protocol/input/emulateTouchFromMouseEvent.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector-protocol/input/emulateTouchFromMouseEvent.html b/third_party/WebKit/LayoutTests/inspector-protocol/input/emulateTouchFromMouseEvent.html
|
| index f141e8c2f62b1cca13672f2380f7ca1c996a2d7d..802f29fe9fb155c52d210eacc1860f1ff53d8312 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector-protocol/input/emulateTouchFromMouseEvent.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector-protocol/input/emulateTouchFromMouseEvent.html
|
| @@ -3,9 +3,9 @@
|
| <script type="text/javascript" src="../../http/tests/inspector-protocol/inspector-protocol-test.js"></script>
|
| <script>
|
|
|
| -window.addEventListener("touchstart", logEvent);
|
| +window.addEventListener("touchstart", logEvent, {passive: false});
|
| +window.addEventListener("touchmove", logEvent, {passive: false});
|
| window.addEventListener("touchend", logEvent);
|
| -window.addEventListener("touchmove", logEvent);
|
| window.addEventListener("touchcancel", logEvent);
|
|
|
| function logEvent(event)
|
|
|