summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-anchor-position/property-interpolations.html
blob: 954e5642dd7499474d147447699c07b50b5a4d1d (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
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
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Anchor Positioning Test: Interpolation of anchor related properties</title>
<link rel="help" href="https://drafts.csswg.org/css-anchor-position-1/">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/interpolation-testcommon.js"></script>
<body>
<script>
  test_no_interpolation({
    property: 'anchor-name',
    from: 'none',
    to: '--foo',
  });
  test_no_interpolation({
    property: 'anchor-name',
    from: '--foo',
    to: '--bar',
  });

  test_no_interpolation({
    property: 'position-anchor',
    from: 'implicit',
    to: '--foo',
  });
  test_no_interpolation({
    property: 'position-anchor',
    from: '--foo',
    to: '--bar',
  });

  test_no_interpolation({
    property: 'inset-area',
    from: 'none',
    to: 'center',
  });
  test_no_interpolation({
    property: 'inset-area',
    from: 'left',
    to: 'right',
  });

  test_no_interpolation({
    property: 'position-try-options',
    from: 'none',
    to: '--foo',
  });
  test_no_interpolation({
    property: 'position-try-options',
    from: 'none',
    to: 'flip-block',
  });
  test_no_interpolation({
    property: 'position-try-options',
    from: 'flip-inline',
    to: 'flip-block',
  });
  test_no_interpolation({
    property: 'position-try-options',
    from: '--foo',
    to: '--bar',
  });
  test_no_interpolation({
    property: 'position-try-options',
    from: '--foo',
    to: 'flip-block',
  });

  test_no_interpolation({
    property: 'position-try-order',
    from: 'normal',
    to: 'most-width',
  });
  test_no_interpolation({
    property: 'position-try-order',
    from: 'most-width',
    to: 'most-height',
  });
</script>