1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Test: selection of scroll-markers picks closest</title>
<link rel="help" href="https://drafts.csswg.org/css-overflow-5/#scroll-marker-pseudo">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/dom/events/scrolling/scroll_support.js"></script>
<script src="/css/css-overflow/support/scroll-marker-support.js"></script>
</head>
<body>
<style>
.wrapper {
display: grid;
justify-content: center;
}
.carousel {
display: grid;
grid-auto-flow: column;
width: 512px;
height: 512px;
overflow-x: scroll;
list-style-type: none;
border: solid 2px grey;
padding-top: 10%;
text-align: center;
counter-set: markeridx -1;
&>.item {
height: 80%;
width: 510px;
border: 1px solid;
place-content: center;
&::scroll-marker {
content: counter(markeridx);
counter-increment: markeridx;
align-content: center;
text-align: center;
width: 35px;
height: 35px;
border: 3px solid gray;
border-radius: 50%;
margin: 3px;
background-color: red;
}
&::scroll-marker:target-current {
background-color: green;
}
}
scroll-marker-group: after;
&::scroll-marker-group {
height: 45px;
display: flex;
align-items: center;
justify-content: center;
border: solid 1px black;
border-radius: 30px;
}
}
</style>
<div class="wrapper" id="wrapper">
<div class="carousel" id="carousel">
<div class="item" id="item0" tabindex=0><p>0</p></div>
<div class="item" id="item1" tabindex=0><p>1</p></div>
<div class="item" id="item2" tabindex=0><p>2</p></div>
<div class="item" id="item3" tabindex=0><p>3</p></div>
</div>
</div>
<script>
const carousel = document.getElementById("carousel");
const items = document.querySelectorAll(".item");
const wrapper = document.getElementById("wrapper");
RED = "rgb(255, 0, 0)";
GREEN = "rgb(0, 128, 0)";
const max_scroll_offset = carousel.scrollWidth - carousel.clientWidth;
async function testActiveMarker(test, scroll_position, expected_idx) {
await waitForCompositorCommit();
if (carousel.scrollLeft !== scroll_position) {
await waitForScrollReset(test, carousel, scroll_position);
}
verifySelectedMarker(expected_idx, items, GREEN, RED);
}
const SCROLL_OFFSET_EPSILON = 5;
promise_test(async(t) => {
await testActiveMarker(t, 0, 0);
}, "scroll-marker 0 selected at scrollLeft = 0");
promise_test(async(t) => {
// Scrolling to just before halfway into item0, scroll-marker 0 should
// be selected.
const scroll_position = item0.offsetWidth / 2 - SCROLL_OFFSET_EPSILON;
await testActiveMarker(t, scroll_position, 0);
}, "scroll-marker 0 selected just before mid point of item0");
promise_test(async(t) => {
// Scrolling to just after halfway into item0, scroll-marker 1 should
// be selected.
const scroll_position = item0.offsetWidth / 2 + SCROLL_OFFSET_EPSILON;
await testActiveMarker(t, scroll_position, 1);
}, "scroll-marker 1 selected just after mid point of item0");
promise_test(async(t) => {
// Scrolling to left edge of item1, scroll-marker 1 should
// be selected.
const scroll_position = item0.offsetWidth;
await testActiveMarker(t, scroll_position, 1);
}, "scroll-marker 1 selected at left edge of item1");
promise_test(async (t) => {
// Scrolling to just before halfway into item1, scroll-marker 1 should
// be selected.
const scroll_position = item0.offsetWidth + item1.offsetWidth / 2
- SCROLL_OFFSET_EPSILON;
await testActiveMarker(t, scroll_position, 1);
}, "scroll-marker 1 selected just before mid point of item1");
promise_test(async(t) => {
// Scrolling to just after halfway into item1, scroll-marker 2 should
// be selected.
const scroll_position = item0.offsetWidth + item1.offsetWidth / 2
+ SCROLL_OFFSET_EPSILON;
await testActiveMarker(t, scroll_position, 2);
}, "scroll-marker 2 selected just after mid point of item1");
promise_test(async(t) => {
// Scrolling to left edge of item2, scroll-marker 2 should
// be selected.
const scroll_position = item0.offsetWidth + item1.offsetWidth;
await testActiveMarker(t, scroll_position, 2);
}, "scroll-marker 2 selected just at left edge of item2");
</script>
</body>
</html>
|