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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/pointerevents/pointerevent_styles.css

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 #innerFrame {
2 position: absolute;
3 top: 250px;
4 left: 200px;
5 height: 100px;
6 width: 100px;
7 }
8
1 .spacer { 9 .spacer {
2 height: 100px; 10 height: 100px;
3 } 11 }
4 12
5 #square1 { 13 #square1 {
14 top: 250px;
15 left: 100px;
6 background: black; 16 background: black;
7 top: 150px; 17 }
8 left: 100px; 18
19 #square2 {
20 top: 50px;
21 left: 30px;
22 visibility: hidden;
23 background: red;
9 } 24 }
10 25
11 .square { 26 .square {
12 height: 20px; 27 height: 20px;
13 width: 20px; 28 width: 20px;
14 position: absolute; 29 position: absolute;
15 padding: 0px; 30 padding: 0px;
16 } 31 }
17 32
18 #target0 { 33 #target0 {
19 background: black; 34 background: black;
20 color: white; 35 color: white;
21 white-space: nowrap; 36 white-space: nowrap;
22 overflow-y: auto; 37 overflow-y: auto;
23 overflow-x: auto; 38 overflow-x: auto;
24 } 39 }
25 40
26 #target1 { 41 #target1 {
27 background: purple; 42 background: purple;
28 color: white; 43 color: white;
29 white-space: nowrap; 44 white-space: nowrap;
30 overflow-y: auto; 45 overflow-y: auto;
31 overflow-x: auto; 46 overflow-x: auto;
32 } 47 }
33 48
49 #scrollTarget {
50 background: darkblue;
51 }
52
34 .touchActionNone { 53 .touchActionNone {
35 touch-action: none; 54 touch-action: none;
36 } 55 }
37 56
38 #innerframe { 57 #innerframe {
39 width: 90%; 58 width: 90%;
40 margin: 10px; 59 margin: 10px;
41 margin-left: 10%; 60 margin-left: 10%;
42 height: 200px; 61 height: 200px;
43 } 62 }
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 #listener { 103 #listener {
85 background: orange; 104 background: orange;
86 border: 1px solid orange; 105 border: 1px solid orange;
87 position: absolute; 106 position: absolute;
88 top: -100px; 107 top: -100px;
89 } 108 }
90 109
91 body.scrollable { 110 body.scrollable {
92 min-height: 5000px; 111 min-height: 5000px;
93 } 112 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698