summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/motion/offset-anchor-transform-box-fill-box-001.html
blob: ac893bae6525992ce1c7b93e52bbb13b1d702bc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<title>CSS Motion Path: Default offset-anchor with transform-box: fill-box</title>
<link rel="help" href="https://drafts.fxtf.org/motion-1/#offset-anchor-property">
<link rel="match" href="offset-anchor-transform-box-fill-box-ref.html">
<meta name="assert" content="Tests default offset-anchor together with a fill-box transform-box">
<style>
#target {
  transform-box: fill-box;
  transform-origin: 25% 25%;
  offset-path: path("M75,-25v100");
  offset-distance: 50%;
}
</style>
<svg width="400" height="400">
  <rect width="100" height="100" fill="red"/>
  <rect id="target" x="150" y="100" width="100" height="100" fill="green"/>
</svg>