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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/web-platform-tests/pointerevents/pointerevent_styles.css

Issue 1993503002: Move the pointerevents directory from web-platform-tests/ to wpt/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 7 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
(Empty)
1 #target0 {
2 background: black;
3 color: white;
4 white-space: nowrap;
5 overflow-y: auto;
6 overflow-x: auto;
7 }
8
9 #target1 {
10 background: purple;
11 color: white;
12 white-space: nowrap;
13 overflow-y: auto;
14 overflow-x: auto;
15 }
16
17 .scroller {
18 width: 700px;
19 height: 430px;
20 margin: 20px;
21 overflow: auto;
22 background: black;
23 }
24
25 .scroller > div {
26 height: 1000px;
27 width: 1000px;
28 color: white;
29 }
30
31 .scroller > div div {
32 height: 100%;
33 width: 100%;
34 color: white;
35 }
36
37 div {
38 margin: 0em;
39 padding: 2em;
40 }
41
42 #complete-notice {
43 background: #afa;
44 border: 1px solid #0a0;
45 display: none;
46 }
47
48 #pointertype-log {
49 font-weight: bold;
50 }
51
52 #listener {
53 background: orange;
54 border: 1px solid orange;
55 position: absolute;
56 top: -100px;
57 }
58
59 body.scrollable {
60 min-height: 5000px;
61 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698