summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-scroll-snap-2/parsing/scroll-start-target-shorthand.html
blob: 601715784253cbb7ca1a32e5d589e8250550c10e (plain)
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Scroll Snap 2 Test: scroll-none-target sets longhands</title>
<link rel="help" href="https://drafts.csswg.org/css-scroll-snap-2/#scroll-start-target">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/shorthand-testcommon.js"></script>
</head>

<body>
  <script>
    test_shorthand_value("scroll-start-target", "none", {
      "scroll-start-target-block": "none",
      "scroll-start-target-inline": "none",
    });
    test_shorthand_value("scroll-start-target", "auto", {
      "scroll-start-target-block": "auto",
      "scroll-start-target-inline": "none",
    });
    test_shorthand_value("scroll-start-target", "none auto", {
      "scroll-start-target-block": "none",
      "scroll-start-target-inline": "auto",
    });
    test_shorthand_value("scroll-start-target", "auto none", {
      "scroll-start-target-block": "auto",
      "scroll-start-target-inline": "none",
    });
  </script>
</body>