File: snap-inline-block.html

package info (click to toggle)
firefox 143.0.3-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 4,617,328 kB
  • sloc: cpp: 7,478,492; javascript: 6,417,157; ansic: 3,720,058; python: 1,396,372; xml: 627,523; asm: 438,677; java: 186,156; sh: 63,477; makefile: 19,171; objc: 13,059; perl: 12,983; yacc: 4,583; cs: 3,846; pascal: 3,405; lex: 1,720; ruby: 1,003; exp: 762; php: 436; lisp: 258; awk: 247; sql: 66; sed: 53; csh: 10
file content (115 lines) | stat: -rw-r--r-- 3,662 bytes parent folder | download | duplicates (24)
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
<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/css-scroll-snap-1/#scroll-snap-type" />
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
div {
  position: absolute;
  margin: 0px;
}
#scroller {
  width: 400px;
  height: 350px;
  overflow: scroll;
  scroll-snap-type: both mandatory;
}
#space {
  width: 1000px;
  height: 1000px;
}
#target {
  width: 200px;
  height: 200px;
  left: 300px;
  top: 300px;
}
</style>

<div id="scroller">
  <div id="space"></div>
  <div id="target"></div>
</div>

<script>
const scroller_width = scroller.clientWidth;
const scroller_height = scroller.clientHeight;
[
  ["horizontal-tb", 300,                  500 - scroller_height],
  ["vertical-lr",   500 - scroller_width, 300],
  ["vertical-rl",   scroller_width - 700, 300]
].forEach(([writing_mode, left, top]) => {
  test(() => {
    const target_left = getComputedStyle(target).left;
    scroller.style.writingMode = writing_mode;
    target.style.scrollSnapAlign = "end start";
    if (writing_mode == "vertical-rl") {
      target.style.left = (scroller_width - 700) + "px";
      scroller.scrollTo(-500, 0);
    } else {
      scroller.scrollTo(0, 0);
    }
    assert_equals(scroller.scrollLeft, left, "aligns correctly on x");
    assert_equals(scroller.scrollTop, top, "aligns correctly on y");
    target.style.left = target_left;
    scroller.style.writingMode = "";
  }, "Snaps correctly for " + writing_mode +
     " writing mode with 'scroll-snap-align: end start' alignment");
});

[
  ["horizontal-tb", 500 - scroller_width,     300],
  ["vertical-lr",   300,                      500 - scroller_height],
  ["vertical-rl",   target.clientWidth - 700, 500 - scroller_height]
].forEach(([writing_mode, left, top]) => {
  test(() => {
    const target_left = getComputedStyle(target).left;
    scroller.style.writingMode = writing_mode;
    target.style.scrollSnapAlign = "start end";
    if (writing_mode == "vertical-rl") {
      target.style.left = (scroller_width - 700) + "px";
      scroller.scrollTo(-500, 0);
    } else {
      scroller.scrollTo(0, 0);
    }
    assert_equals(scroller.scrollLeft, left, "aligns correctly on x");
    assert_equals(scroller.scrollTop, top, "aligns correctly on y");
    target.style.left = target_left;
    scroller.style.writingMode = "";
  }, "Snaps correctly for " + writing_mode +
     " writing mode with 'scroll-snap-align: start end' alignment");
});

test(() => {
  const target_left = getComputedStyle(target).left;
  scroller.style.direction = "rtl";
  target.style.scrollSnapAlign = "end start";
  target.style.left = (scroller_width - 700) + "px";

  scroller.scrollTo(-500, 0);
  assert_equals(scroller.scrollLeft, target.clientWidth - 700,
                "aligns correctly on x");
  assert_equals(scroller.scrollTop, 500 - scroller_height,
                "aligns correctly on y");

  target.style.left = target_left;
  scroller.style.direction = "";
}, "Snaps correctly for 'direction: rtl' with 'scroll-snap-align: end start' " +
   "alignment");

test(() => {
  const target_left = getComputedStyle(target).left;
  scroller.style.direction = "rtl";
  target.style.scrollSnapAlign = "start end";
  target.style.left = (scroller_width - 700) + "px";

  scroller.scrollTo(-500, 0);
  assert_equals(scroller.scrollLeft, scroller_width - 700,
                "aligns correctly on x");
  assert_equals(scroller.scrollTop, 300, "aligns correctly on y");

  target.style.left = target_left;
  scroller.style.direction = "";
}, "Snaps correctly for 'direction: rtl' with 'scroll-snap-align: start end' " +
   "alignment");

</script>