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

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

Issue 1577263004: Communicate whether passive event listeners exist to cc. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master_wheel_passive_listeners
Patch Set: Fix nits Created 4 years, 10 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 <head> 3 <head>
4 <script type="text/javascript"> 4 <script type="text/javascript">
5 window.addEventListener('mousewheel', function(event) { 5 window.addEventListener('mousewheel', function(event) {
6 }); 6 }, {passive: true});
7 window.addEventListener('mousewheel', function(event) {
8 }, {passive: false});
7 </script> 9 </script>
8 </head> 10 </head>
9 11
10 </html> 12 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698