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

Side by Side Diff: chrome/test/data/navigation_interception/navigation_from_user_gesture.html

Issue 2414273003: Remove UserGesture on touch scrolls (Closed)
Patch Set: Improve comments Created 4 years, 1 month 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 <!-- 3 <!--
4 4
5 Copyright (c) 2015 The Chromium Authors. All rights reserved. 5 Copyright (c) 2015 The Chromium Authors. All rights reserved.
6 Use of this source code is governed by a BSD-style license that can be 6 Use of this source code is governed by a BSD-style license that can be
7 found in the LICENSE file. 7 found in the LICENSE file.
8 8
9 --> 9 -->
10 <head> 10 <head>
11 <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"> 11 <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">
12 <style> 12 <style>
13 #first { 13 #first {
14 position: absolute; 14 position: absolute;
15 width: 100px; 15 width: 100px;
16 height: 100px; 16 height: 100px;
17 top: 0px; 17 top: 0px;
18 left: 0px; 18 left: 0px;
19 background-color: green; 19 background-color: green;
20 -webkit-transform: translate3d(0, 0, 0); 20 -webkit-transform: translate3d(0, 0, 0);
21 } 21 }
22 </style> 22 </style>
23 <script> 23 <script>
24 function openHello(e) { 24 function openHello(e) {
25 window.location = 'hello.html'; 25 window.location = 'hello.html';
26 e.preventDefault(); 26 e.preventDefault();
27 }; 27 };
28 28
29 function setup() { 29 function setup() {
30 first.ontouchstart = openHello; 30 first.ontouchend = openHello;
31 }; 31 };
32 </script> 32 </script>
33 </head> 33 </head>
34 <body onload='setup();'> 34 <body onload='setup();'>
35 <div id='first'></div> 35 <div id='first'></div>
36 </body> 36 </body>
37 </html> 37 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698