Chromium Code Reviews| Index: third_party/WebKit/Source/web/tests/data/touch-event-handler.html |
| diff --git a/third_party/WebKit/Source/web/tests/data/touch-event-handler.html b/third_party/WebKit/Source/web/tests/data/touch-event-handler.html |
| index 208be2336c6406df0d9a54f0540f8df3e8bb6a48..5a802f503ee4061bde4d174fa7dbcbfa4f43cbbf 100644 |
| --- a/third_party/WebKit/Source/web/tests/data/touch-event-handler.html |
| +++ b/third_party/WebKit/Source/web/tests/data/touch-event-handler.html |
| @@ -1,10 +1,12 @@ |
| <!DOCTYPE html> |
| <html> |
| +<body style="touch-action: none"> |
|
Rick Byers
2016/07/07 20:02:09
do you really need both touch-action and the non-p
dtapuska
2016/07/07 20:34:22
No I was trying to future proof it.
|
| <head> |
| <script type="text/javascript"> |
| window.addEventListener('touchstart', function(event) { |
| - }); |
| + }, {passive: false}); |
| </script> |
| </head> |
| - |
| +<body style="touch-action: none"> |
|
Rick Byers
2016/07/07 20:02:09
duplicate body tag?
dtapuska
2016/07/07 20:34:22
Done.
|
| +</body |
| </html> |