Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / events / touch / resources / compositor-touch-hit-rects.css
blobef4b12bf1aec14e89cf58927e73ac51237223a15
1 html[dumpRenderTree] {
2 font-family: Ahem;
4 #tests {
5 font-size: 10px;
6 width: 300px;
8 #tests > div {
9 margin: 5px;
11 .testcase:not(.generated), .testcase *:not(.generated) {
12 border: 1px solid red;
14 /* For manually visualizing how elements respond to hit-testing */
15 .testcase:not(.generated):active, .testcase *:not(.generated):active {
16 background-color: yellow;
18 .overlay-container {
19 position: relative;
20 height: 0;
21 width: 0;
22 z-index: 10;
24 .overlay {
25 background-color: green;
26 opacity: 0.3;
27 pointer-events: none;
28 z-index: 10;
30 /* Don't show the overlays until we're all done testing, as they
31 can interfere with promotion to composited layers
33 html:not([done]) .display-when-done {
34 display: none;