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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/pointerevents/pointerevent_touch-action-inherit_highest-parent-none_touch-manual.html

Issue 2303013002: Add UMA metric to track usage of sending a mousedown to select elements. (Closed)
Patch Set: W3C auto test import CL. Created 4 years, 3 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 <title>touch-action: parent: none + two embedded children</title> 4 <title>touch-action: parent: none + two embedded children</title>
5 <meta name="viewport" content="width=device-width"> 5 <meta name="viewport" content="width=device-width">
6 <link rel="stylesheet" type="text/css" href="pointerevent_styles.css"> 6 <link rel="stylesheet" type="text/css" href="pointerevent_styles.css">
7 <script src="/resources/testharness.js"></script> 7 <script src="/resources/testharness.js"></script>
8 <script src="/resources/testharnessreport.js"></script> 8 <script src="/resources/testharnessreport.js"></script>
9 <script src="pointerevent_support.js"></script> 9 <script src="pointerevent_support.js"></script>
10 <style> 10 <style>
11 #divParent { 11 #divParent {
12 touch-action: none; 12 touch-action: none;
13 } 13 }
14 </style> 14 </style>
15 </head> 15 </head>
16 <body onload="run()"> 16 <body onload="run()">
17 <h1>Pointer Events touch-action attribute support</h1> 17 <h1>Pointer Events touch-action attribute support</h1>
18 <h4 id="desc">Test Description: Try to scroll text DOWN. Wait for descri ption update. Expected: pan enabled</h4> 18 <h4 id="desc">Test Description: Try to scroll text DOWN inside blue rect angle. Wait for description update. Expected: pan enabled</h4>
19 <p>Note: this test is for touch-devices only</p> 19 <p>Note: this test is for touch-devices only</p>
20 <div id="divParent"> 20 <div id="divParent">
21 <div class="scroller" id="target0"> 21 <div class="scroller" id="target0">
22 <div> 22 <div id="scrollTarget">
23 <p> 23 <p>
24 Lorem ipsum dolor sit amet, consectetuer adipiscing elit , sed diem 24 Lorem ipsum dolor sit amet, consectetuer adipiscing elit , sed diem
25 nonummy nibh euismod tincidunt ut lacreet dolore magna a liguam erat volutpat. 25 nonummy nibh euismod tincidunt ut lacreet dolore magna a liguam erat volutpat.
26 Ut wisis enim ad minim veniam, quis nostrud exerci tutio n ullamcorper suscipit 26 Ut wisis enim ad minim veniam, quis nostrud exerci tutio n ullamcorper suscipit
27 lobortis nisl ut aliquip ex ea commodo consequat. 27 lobortis nisl ut aliquip ex ea commodo consequat.
28 </p> 28 </p>
29 <p>Lorem ipsum dolor sit amet...</p> 29 <p>Lorem ipsum dolor sit amet...</p>
30 <p>Lorem ipsum dolor sit amet...</p> 30 <p>Lorem ipsum dolor sit amet...</p>
31 <p>Lorem ipsum dolor sit amet...</p> 31 <p>Lorem ipsum dolor sit amet...</p>
32 <p>Lorem ipsum dolor sit amet...</p> 32 <p>Lorem ipsum dolor sit amet...</p>
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 document.getElementById('divParent').setAttribute('style', 'touc h-action: auto'); 124 document.getElementById('divParent').setAttribute('style', 'touc h-action: auto');
125 } 125 }
126 </script> 126 </script>
127 <h1>behaviour: auto</h1> 127 <h1>behaviour: auto</h1>
128 <div id="complete-notice"> 128 <div id="complete-notice">
129 <p>The following pointer types were detected: <span id="pointertype- log"></span>.</p> 129 <p>The following pointer types were detected: <span id="pointertype- log"></span>.</p>
130 </div> 130 </div>
131 <div id="log"></div> 131 <div id="log"></div>
132 </body> 132 </body>
133 </html> 133 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698