Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(143)

Side by Side Diff: third_party/WebKit/Source/web/tests/data/touch-event-handler.html

Issue 2127163002: Limit PassiveDocumentEventListeners to touch and make it experimental (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: A few more layout tests Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <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.
3 <head> 4 <head>
4 <script type="text/javascript"> 5 <script type="text/javascript">
5 window.addEventListener('touchstart', function(event) { 6 window.addEventListener('touchstart', function(event) {
6 }); 7 }, {passive: false});
7 </script> 8 </script>
8 </head> 9 </head>
9 10 <body style="touch-action: none">
Rick Byers 2016/07/07 20:02:09 duplicate body tag?
dtapuska 2016/07/07 20:34:22 Done.
11 </body
10 </html> 12 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698