summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/motion/offset-supports-calc.html
blob: 54414be0643abb097b29aed28d2bd96ab2c24f23 (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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Motion Path Module Level 1: calc values</title>
<link rel="author" title="Eric Willigers" href="mailto:ericwilligers@chromium.org">
<link rel="help" href="https://drafts.fxtf.org/motion-1/">
<link rel="help" href="https://drafts.csswg.org/css-values-3/#calc-notation">
<meta name="assert" content="calc values are supported in offset properties.">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
  #target {
    font-size: 20px;
  }
</style>
</head>
<body>
<div id="target"></div>
<script>
'use strict';

test(function(){
  target.style = 'offset-position: calc(30px + 20%) calc(-200px + 8em + 100%);';
  assert_equals(getComputedStyle(target).offsetPosition, 'calc(20% + 30px) calc(100% - 40px)');
}, 'offset-position supports calc');

test(function(){
  target.style = 'offset-path: ray(calc(1turn - 100grad) closest-side);';
  assert_equals(getComputedStyle(target).offsetPath, 'ray(270deg)');
}, 'offset-path supports calc');

test(function(){
  target.style = 'offset-distance: calc(-100px + 50%);';
  assert_equals(getComputedStyle(target).offsetDistance, 'calc(50% - 100px)');
}, 'offset-distance supports calc');

test(function(){
  target.style = 'offset-rotate: auto calc(1turn - 100grad);';
  assert_equals(getComputedStyle(target).offsetRotate, 'auto 270deg');
}, 'offset-rotate supports calc');

test(function(){
  target.style = 'offset-anchor: calc(30px + 20%) calc(-200px + 8em + 100%);';
  assert_equals(getComputedStyle(target).offsetAnchor, 'calc(20% + 30px) calc(100% - 40px)');
}, 'offset-anchor supports calc');

</script>
</body>
</html>